# HG changeset patch # User Chong Yidong # Date 1262371405 18000 # Node ID 4d6afab8b7cbd7b3a30ef2062cc6ff232763d0f5 # Parent de63af995d1ca0c5c75123b27a148664b6bef603 * comint.el (comint-input-ring-size): Make it a defcustom and increase the default to 500. diff -r de63af995d1c -r 4d6afab8b7cb lisp/ChangeLog --- a/lisp/ChangeLog Fri Jan 01 13:14:22 2010 -0500 +++ b/lisp/ChangeLog Fri Jan 01 13:43:25 2010 -0500 @@ -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 -r de63af995d1c -r 4d6afab8b7cb lisp/comint.el --- a/lisp/comint.el Fri Jan 01 13:14:22 2010 -0500 +++ b/lisp/comint.el Fri Jan 01 13:43:25 2010 -0500 @@ -310,8 +310,11 @@ :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.")