Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a88c46c3
Commit
a88c46c3
authored
Jan 01, 2010
by
Chong Yidong
Browse files
* comint.el (comint-input-ring-size): Make it a defcustom and
increase the default to 500.
parent
4801c5fa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/comint.el
lisp/comint.el
+5
-2
No files found.
lisp/ChangeLog
View file @
a88c46c3
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).
...
...
lisp/comint.el
View file @
a88c46c3
...
...
@@ -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."
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment