1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-07 20:54:32 +00:00

* comint.el (comint-input-ring-size): Make it a defcustom and

increase the default to 500.
This commit is contained in:
Chong Yidong 2010-01-01 13:43:25 -05:00
parent 4801c5fa40
commit a88c46c3a8
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2010-01-01 Juri Linkov <juri@jurta.org>
* comint.el (comint-input-ring-size): Make it a defcustom and
increase the default to 500.
2009-12-31 Nick Roberts <nickrob@snap.net.nz>
Further changes from EMACS_23_1_RC branch (2009-12-29 contd).

View File

@ -310,8 +310,11 @@ the function `comint-truncate-buffer' is on `comint-output-filter-functions'."
:group 'comint)
;; FIXME: this should be defcustom
(defvar comint-input-ring-size 150
"Size of input history ring.")
(defcustom comint-input-ring-size 500
"Size of the input history ring in `comint-mode'."
:type 'integer
:group 'comint
:version "23.2")
(defvar comint-input-ring-separator "\n"
"Separator between commands in the history file.")