emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-24 r117600: * src/minibuf.c (history-length): Increa


From: Stefan Monnier
Subject: [Emacs-diffs] emacs-24 r117600: * src/minibuf.c (history-length): Increase default from 30 to 100.
Date: Mon, 20 Oct 2014 22:02:51 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117600
revision-id: address@hidden
parent: address@hidden
author: Glenn Morris <address@hidden>
committer: Stefan Monnier <address@hidden>
branch nick: emacs-24
timestamp: Mon 2014-10-20 18:02:40 -0400
message:
  * src/minibuf.c (history-length): Increase default from 30 to 100.
  * lisp/cus-start.el (history-length): Bump :version.  [Backport]
modified:
  etc/NEWS                       news-20100311060928-aoit31wvzf25yr1z-1
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/cus-start.el              
cusstart.el-20091113204419-o5vbwnq5f7feedwu-1100
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/minibuf.c                  minibuf.c-20091113204419-o5vbwnq5f7feedwu-242
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2014-09-30 04:52:10 +0000
+++ b/etc/NEWS  2014-10-20 22:02:40 +0000
@@ -14,6 +14,14 @@
 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.
+
+
+* Changes in Specialized Modes and Packages in Emacs 24.5
+
+** cc-compat.el is marked as obsolete.
 
 * Installation Changes in Emacs 24.4
 

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-10-20 21:55:12 +0000
+++ b/lisp/ChangeLog    2014-10-20 22:02:40 +0000
@@ -1,3 +1,7 @@
+2014-10-20  Glenn Morris  <address@hidden>
+
+       * cus-start.el (history-length): Bump :version.  [Backport]
+
 2014-10-20  Stefan Monnier  <address@hidden>
 
        * obsolete/cc-compat.el: Make obsolete (bug#18561).

=== modified file 'lisp/cus-start.el'
--- a/lisp/cus-start.el 2014-05-28 15:48:39 +0000
+++ b/lisp/cus-start.el 2014-10-20 22:02:40 +0000
@@ -317,7 +317,7 @@
             (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")
 

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2014-10-20 21:48:58 +0000
+++ b/src/ChangeLog     2014-10-20 22:02:40 +0000
@@ -1,3 +1,8 @@
+2014-10-20  Glenn Morris  <address@hidden>
+
+       * minibuf.c (history-length): Increase default from 30 to 100.
+       [Backport]
+
 2014-10-20  Stefan Monnier  <address@hidden>
 
        * 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.

=== modified file 'src/minibuf.c'
--- a/src/minibuf.c     2014-05-18 12:58:30 +0000
+++ b/src/minibuf.c     2014-10-20 22:02:40 +0000
@@ -1970,7 +1970,7 @@
 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.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]