diff options
| author | Chong Yidong | 2010-01-01 13:43:25 -0500 |
|---|---|---|
| committer | Chong Yidong | 2010-01-01 13:43:25 -0500 |
| commit | a88c46c3a8064407529d29dba6162fa826a87a28 (patch) | |
| tree | 7f24bfa6aa34621a66400be6c88a7036f291885d | |
| parent | 4801c5fa405dd7e511d572c195be7bd1ad9f892e (diff) | |
| download | emacs-a88c46c3a8064407529d29dba6162fa826a87a28.tar.gz emacs-a88c46c3a8064407529d29dba6162fa826a87a28.zip | |
* comint.el (comint-input-ring-size): Make it a defcustom and
increase the default to 500.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/comint.el | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f12bc9c0856..628869dc0c3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-01-01 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * comint.el (comint-input-ring-size): Make it a defcustom and | ||
| 4 | increase the default to 500. | ||
| 5 | |||
| 1 | 2009-12-31 Nick Roberts <nickrob@snap.net.nz> | 6 | 2009-12-31 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 7 | ||
| 3 | Further changes from EMACS_23_1_RC branch (2009-12-29 contd). | 8 | Further changes from EMACS_23_1_RC branch (2009-12-29 contd). |
diff --git a/lisp/comint.el b/lisp/comint.el index c4dc3654554..fefe2d00668 100644 --- a/lisp/comint.el +++ b/lisp/comint.el | |||
| @@ -310,8 +310,11 @@ the function `comint-truncate-buffer' is on `comint-output-filter-functions'." | |||
| 310 | :group 'comint) | 310 | :group 'comint) |
| 311 | 311 | ||
| 312 | ;; FIXME: this should be defcustom | 312 | ;; FIXME: this should be defcustom |
| 313 | (defvar comint-input-ring-size 150 | 313 | (defcustom comint-input-ring-size 500 |
| 314 | "Size of input history ring.") | 314 | "Size of the input history ring in `comint-mode'." |
| 315 | :type 'integer | ||
| 316 | :group 'comint | ||
| 317 | :version "23.2") | ||
| 315 | 318 | ||
| 316 | (defvar comint-input-ring-separator "\n" | 319 | (defvar comint-input-ring-separator "\n" |
| 317 | "Separator between commands in the history file.") | 320 | "Separator between commands in the history file.") |