]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/minibuf.c (history-length): Increase default from 30 to 100.
authorGlenn Morris <rgm@gnu.org>
Mon, 20 Oct 2014 22:02:40 +0000 (18:02 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 20 Oct 2014 22:02:40 +0000 (18:02 -0400)
* lisp/cus-start.el (history-length): Bump :version.  [Backport]

etc/NEWS
lisp/ChangeLog
lisp/cus-start.el
src/ChangeLog
src/minibuf.c

index eba9b9405850e447e422796652ca894f08b15763..12c67c84e7b798e568214941fe81b9ac88010de9 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -14,6 +14,14 @@ and NEWS.1-17 for changes in older Emacs versions.
 You can narrow news to a specific version by calling `view-emacs-news'
 with a prefix argument or by typing C-u C-h C-n.
 
+* Changes in Emacs-24.5
+
+** The default value of `history-length' has increased to 100.
+
+\f
+* Changes in Specialized Modes and Packages in Emacs 24.5
+
+** cc-compat.el is marked as obsolete.
 \f
 * Installation Changes in Emacs 24.4
 
index 398d2ccba7236e4c455f33f81782ccbf89d8d465..376e4a3a87d382811fb49eeea176bbf2f753d8be 100644 (file)
@@ -1,3 +1,7 @@
+2014-10-20  Glenn Morris  <rgm@gnu.org>
+
+       * cus-start.el (history-length): Bump :version.  [Backport]
+
 2014-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * obsolete/cc-compat.el: Make obsolete (bug#18561).
index 2da67112bd3deced694ee5af16b9cb6bdf8801e7..ed19f75b5d27d2ef8ee241b106f58c23af17eacc 100644 (file)
@@ -317,7 +317,7 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of
             (enable-recursive-minibuffers minibuffer boolean)
             (history-length minibuffer
                             (choice (const :tag "Infinite" t) integer)
-                            "22.1")
+                            "24.5")    ; 30 -> 100
             (history-delete-duplicates minibuffer boolean "22.1")
             (read-buffer-completion-ignore-case minibuffer boolean "23.1")
 
index 39e94a85a0ed22e59c771d2d91b19eb3c8806773..ec904da39bb91dec5c1be4ed446a336f29c987c6 100644 (file)
@@ -1,3 +1,8 @@
+2014-10-20  Glenn Morris  <rgm@gnu.org>
+
+       * minibuf.c (history-length): Increase default from 30 to 100.
+       [Backport]
+
 2014-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * xdisp.c (redisplay_window): Re-run pre-redisplay-function after we
@@ -52,8 +57,7 @@
        array of 2 values specifying the coordinates of the frame's
        top-left corner.  Use these values instead of calling x_get_arg,
        which can cons Lisp objects, and therefore cannot be called except
-       from the main thread.  Remove redundant tests for the default
-       values.
+       from the main thread.  Remove redundant tests for the default values.
        (my_create_window): Move the calculation of the coordinates of the
        frame's top-left edge here.  Pass them to the input thread via the
        second parameter of the WM_EMACS_CREATEWINDOW message.
index c3fcbeb59c7d69c3b32cab8e4f8e35f63fcdf113..3042b13b7d652cf52c55421303aa5a5f31def582 100644 (file)
@@ -1970,7 +1970,7 @@ A value of t means no truncation.
 This variable only affects history lists that don't specify their own
 maximum lengths.  Setting the `history-length' property of a history
 variable overrides this default.  */);
-  XSETFASTINT (Vhistory_length, 30);
+  XSETFASTINT (Vhistory_length, 100);
 
   DEFVAR_BOOL ("history-delete-duplicates", history_delete_duplicates,
               doc: /* Non-nil means to delete duplicates in history.