comparison lisp/comint.el @ 107608:11c99bdae327

Merge from mainline.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 01 Jan 2010 14:30:06 -0500
parents 4d6afab8b7cb
children 1d1d5d9bd884
comparison
equal deleted inserted replaced
107607:a04b9ac55bc5 107608:11c99bdae327
308 the function `comint-truncate-buffer' is on `comint-output-filter-functions'." 308 the function `comint-truncate-buffer' is on `comint-output-filter-functions'."
309 :type 'integer 309 :type 'integer
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.")
318 321
319 (defvar comint-input-history-ignore "^#" 322 (defvar comint-input-history-ignore "^#"