From: Chong Yidong Date: Fri, 1 Jan 2010 18:43:25 +0000 (-0500) Subject: * comint.el (comint-input-ring-size): Make it a defcustom and X-Git-Tag: emacs-pretest-23.1.92~117 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a88c46c3a8064407529d29dba6162fa826a87a28;p=emacs.git * comint.el (comint-input-ring-size): Make it a defcustom and increase the default to 500. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f12bc9c0856..628869dc0c3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-01-01 Juri Linkov + + * comint.el (comint-input-ring-size): Make it a defcustom and + increase the default to 500. + 2009-12-31 Nick Roberts 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'." :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.")