diff options
author | Eli Zaretskii <eliz@gnu.org> | 2007-12-22 17:12:30 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2007-12-22 17:12:30 +0000 |
commit | e5f0c02f8ef2a549ccc88a29792fcceab9625abf (patch) | |
tree | 7f224995faa09e8af49d480ed28b1957423e866d /lisp/simple.el | |
parent | fae97ed8b8861e68394170f5a5a6938e14118cf0 (diff) | |
download | emacs-e5f0c02f8ef2a549ccc88a29792fcceab9625abf.tar.gz |
(minibuffer-history, shell-command-history): Add references to history-length
in the doc strings.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 551c93b773a..8c97cec2a6c 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -1156,7 +1156,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, @@ -1748,7 +1751,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.") |