diff options
author | Glenn Morris <rgm@gnu.org> | 2014-03-21 13:04:50 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-03-21 13:04:50 -0400 |
commit | 26e91130ed0611a1074d0cac5880c065f9ba69c8 (patch) | |
tree | 72c180ecacec3f2c8ae9b3c695c19665e801cc42 /src/minibuf.c | |
parent | aa4659075414a2730535eeb419847d761eb76f0d (diff) | |
download | emacs-26e91130ed0611a1074d0cac5880c065f9ba69c8.tar.gz |
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.
Diffstat (limited to 'src/minibuf.c')
-rw-r--r-- | src/minibuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index f325381d1ca..8b742cf88ca 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1967,7 +1967,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. |