diff options
| author | Glenn Morris | 2014-10-20 18:02:40 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2014-10-20 18:02:40 -0400 |
| commit | d9a72916e54b1bef8ad2322e6833f643473877b6 (patch) | |
| tree | d4cd6994eac2ea3d706d39d182e213b695272784 | |
| parent | 1fc82d89a8a603754d17a35be1ce78e66d0b6fd6 (diff) | |
| download | emacs-d9a72916e54b1bef8ad2322e6833f643473877b6.tar.gz emacs-d9a72916e54b1bef8ad2322e6833f643473877b6.zip | |
* src/minibuf.c (history-length): Increase default from 30 to 100.
* lisp/cus-start.el (history-length): Bump :version. [Backport]
| -rw-r--r-- | etc/NEWS | 8 | ||||
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/cus-start.el | 2 | ||||
| -rw-r--r-- | src/ChangeLog | 8 | ||||
| -rw-r--r-- | src/minibuf.c | 2 |
5 files changed, 20 insertions, 4 deletions
| @@ -14,6 +14,14 @@ and NEWS.1-17 for changes in older Emacs versions. | |||
| 14 | You can narrow news to a specific version by calling `view-emacs-news' | 14 | You can narrow news to a specific version by calling `view-emacs-news' |
| 15 | with a prefix argument or by typing C-u C-h C-n. | 15 | with a prefix argument or by typing C-u C-h C-n. |
| 16 | 16 | ||
| 17 | * Changes in Emacs-24.5 | ||
| 18 | |||
| 19 | ** The default value of `history-length' has increased to 100. | ||
| 20 | |||
| 21 | |||
| 22 | * Changes in Specialized Modes and Packages in Emacs 24.5 | ||
| 23 | |||
| 24 | ** cc-compat.el is marked as obsolete. | ||
| 17 | 25 | ||
| 18 | * Installation Changes in Emacs 24.4 | 26 | * Installation Changes in Emacs 24.4 |
| 19 | 27 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 398d2ccba72..376e4a3a87d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-10-20 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * cus-start.el (history-length): Bump :version. [Backport] | ||
| 4 | |||
| 1 | 2014-10-20 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2014-10-20 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * obsolete/cc-compat.el: Make obsolete (bug#18561). | 7 | * obsolete/cc-compat.el: Make obsolete (bug#18561). |
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 2da67112bd3..ed19f75b5d2 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -317,7 +317,7 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of | |||
| 317 | (enable-recursive-minibuffers minibuffer boolean) | 317 | (enable-recursive-minibuffers minibuffer boolean) |
| 318 | (history-length minibuffer | 318 | (history-length minibuffer |
| 319 | (choice (const :tag "Infinite" t) integer) | 319 | (choice (const :tag "Infinite" t) integer) |
| 320 | "22.1") | 320 | "24.5") ; 30 -> 100 |
| 321 | (history-delete-duplicates minibuffer boolean "22.1") | 321 | (history-delete-duplicates minibuffer boolean "22.1") |
| 322 | (read-buffer-completion-ignore-case minibuffer boolean "23.1") | 322 | (read-buffer-completion-ignore-case minibuffer boolean "23.1") |
| 323 | 323 | ||
diff --git a/src/ChangeLog b/src/ChangeLog index 39e94a85a0e..ec904da39bb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-10-20 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * minibuf.c (history-length): Increase default from 30 to 100. | ||
| 4 | [Backport] | ||
| 5 | |||
| 1 | 2014-10-20 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2014-10-20 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * xdisp.c (redisplay_window): Re-run pre-redisplay-function after we | 8 | * xdisp.c (redisplay_window): Re-run pre-redisplay-function after we |
| @@ -52,8 +57,7 @@ | |||
| 52 | array of 2 values specifying the coordinates of the frame's | 57 | array of 2 values specifying the coordinates of the frame's |
| 53 | top-left corner. Use these values instead of calling x_get_arg, | 58 | top-left corner. Use these values instead of calling x_get_arg, |
| 54 | which can cons Lisp objects, and therefore cannot be called except | 59 | which can cons Lisp objects, and therefore cannot be called except |
| 55 | from the main thread. Remove redundant tests for the default | 60 | from the main thread. Remove redundant tests for the default values. |
| 56 | values. | ||
| 57 | (my_create_window): Move the calculation of the coordinates of the | 61 | (my_create_window): Move the calculation of the coordinates of the |
| 58 | frame's top-left edge here. Pass them to the input thread via the | 62 | frame's top-left edge here. Pass them to the input thread via the |
| 59 | second parameter of the WM_EMACS_CREATEWINDOW message. | 63 | second parameter of the WM_EMACS_CREATEWINDOW message. |
diff --git a/src/minibuf.c b/src/minibuf.c index c3fcbeb59c7..3042b13b7d6 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -1970,7 +1970,7 @@ A value of t means no truncation. | |||
| 1970 | This variable only affects history lists that don't specify their own | 1970 | This variable only affects history lists that don't specify their own |
| 1971 | maximum lengths. Setting the `history-length' property of a history | 1971 | maximum lengths. Setting the `history-length' property of a history |
| 1972 | variable overrides this default. */); | 1972 | variable overrides this default. */); |
| 1973 | XSETFASTINT (Vhistory_length, 30); | 1973 | XSETFASTINT (Vhistory_length, 100); |
| 1974 | 1974 | ||
| 1975 | DEFVAR_BOOL ("history-delete-duplicates", history_delete_duplicates, | 1975 | DEFVAR_BOOL ("history-delete-duplicates", history_delete_duplicates, |
| 1976 | doc: /* Non-nil means to delete duplicates in history. | 1976 | doc: /* Non-nil means to delete duplicates in history. |