From a88c46c3a8064407529d29dba6162fa826a87a28 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Fri, 1 Jan 2010 13:43:25 -0500 Subject: [PATCH] * comint.el (comint-input-ring-size): Make it a defcustom and increase the default to 500. --- lisp/ChangeLog | 5 +++++ 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 @@ +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.") -- 2.11.4.GIT