diff options
author | Miles Bader <miles@gnu.org> | 2007-12-28 22:26:14 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2007-12-28 22:26:14 +0000 |
commit | b17f53abc28496125965f36147b76ea5f6a2b4fb (patch) | |
tree | 4293e53692f304327ba689dfeea32d1b0b5bc12a /lisp/simple.el | |
parent | 2e5093251c8e63f4546ffc30182dd4015e9a58fd (diff) | |
parent | ea7ac2eb953bf3c30670e60cb00a9fca611b38b7 (diff) | |
download | emacs-b17f53abc28496125965f36147b76ea5f6a2b4fb.tar.gz emacs-b17f53abc28496125965f36147b76ea5f6a2b4fb.tar.bz2 emacs-b17f53abc28496125965f36147b76ea5f6a2b4fb.zip |
Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-966
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 0cbec53fe66..b92967da112 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -1166,7 +1166,10 @@ to get different commands to edit and resubmit." (defvar minibuffer-history nil "Default minibuffer history list. This is used for all minibuffer input -except when an alternate history list is specified.") +except when an alternate history list is specified. + +Maximum length of the history list is determined by the value +of `history-length', which see.") (defvar minibuffer-history-sexp-flag nil "Control whether history list elements are expressions or strings. If the value of this variable equals current minibuffer depth, @@ -1901,7 +1904,10 @@ You can disable the popping up of this buffer by adding the entry t)) (defvar shell-command-history nil - "History list for some commands that read shell commands.") + "History list for some commands that read shell commands. + +Maximum length of the history list is determined by the value +of `history-length', which see.") (defvar shell-command-switch "-c" "Switch used to have the shell execute its command line argument.") @@ -5015,7 +5021,10 @@ Each action has the form (FUNCTION . ARGS)." 'switch-to-buffer-other-frame yank-action send-actions)) (defvar set-variable-value-history nil - "History of values entered with `set-variable'.") + "History of values entered with `set-variable'. + +Maximum length of the history list is determined by the value +of `history-length', which see.") (defun set-variable (variable value &optional make-local) "Set VARIABLE to VALUE. VALUE is a Lisp object. |