emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r116830: Increase default history-length from 30 to


From: Glenn Morris
Subject: [Emacs-diffs] trunk r116830: Increase default history-length from 30 to 100
Date: Fri, 21 Mar 2014 17:05:21 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116830
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Fri 2014-03-21 13:04:50 -0400
message:
  Increase default history-length from 30 to 100
  
  Ref: http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg02008.html
  
  * lisp/cus-start.el (history-length): Bump :version.
  
  * src/minibuf.c (history-length): Increase default from 30 to 100.
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-03-21 06:36:08 +0000
+++ b/etc/NEWS  2014-03-21 17:04:50 +0000
@@ -30,6 +30,9 @@
 
 * Changes in Emacs 24.5
 
+---
+** The default value of `history-length' has increased to 100.
+
 
 * Editing Changes in Emacs 24.5
 

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-03-21 07:22:41 +0000
+++ b/lisp/ChangeLog    2014-03-21 17:04:50 +0000
@@ -1,5 +1,7 @@
 2014-03-21  Glenn Morris  <address@hidden>
 
+       * cus-start.el (history-length): Bump :version.
+
        * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
        ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
        ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):

=== modified file 'lisp/cus-start.el'
--- a/lisp/cus-start.el 2014-01-01 07:43:34 +0000
+++ b/lisp/cus-start.el 2014-03-21 17:04:50 +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-03-21 12:09:57 +0000
+++ b/src/ChangeLog     2014-03-21 17:04:50 +0000
@@ -1,3 +1,7 @@
+2014-03-21  Glenn Morris  <address@hidden>
+
+       * minibuf.c (history-length): Increase default from 30 to 100.
+
 2014-03-21  Daniel Colascione  <address@hidden>
 
        * xterm.c (x_bitmap_icon): Stop reading the icon bitmap from disk

=== modified file 'src/minibuf.c'
--- a/src/minibuf.c     2014-02-08 04:23:25 +0000
+++ b/src/minibuf.c     2014-03-21 17:04:50 +0000
@@ -1967,7 +1967,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]