aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2007-12-22 17:12:30 +0000
committerEli Zaretskii2007-12-22 17:12:30 +0000
commite5f0c02f8ef2a549ccc88a29792fcceab9625abf (patch)
tree7f224995faa09e8af49d480ed28b1957423e866d
parentfae97ed8b8861e68394170f5a5a6938e14118cf0 (diff)
downloademacs-e5f0c02f8ef2a549ccc88a29792fcceab9625abf.tar.gz
emacs-e5f0c02f8ef2a549ccc88a29792fcceab9625abf.zip
(minibuffer-history, shell-command-history): Add references to history-length
in the doc strings.
-rw-r--r--lisp/simple.el10
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."
1156(defvar minibuffer-history nil 1156(defvar minibuffer-history nil
1157 "Default minibuffer history list. 1157 "Default minibuffer history list.
1158This is used for all minibuffer input 1158This is used for all minibuffer input
1159except when an alternate history list is specified.") 1159except when an alternate history list is specified.
1160
1161Maximum length of the history list is determined by the value
1162of `history-length', which see.")
1160(defvar minibuffer-history-sexp-flag nil 1163(defvar minibuffer-history-sexp-flag nil
1161 "Control whether history list elements are expressions or strings. 1164 "Control whether history list elements are expressions or strings.
1162If the value of this variable equals current minibuffer depth, 1165If 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
1748 t)) 1751 t))
1749 1752
1750(defvar shell-command-history nil 1753(defvar shell-command-history nil
1751 "History list for some commands that read shell commands.") 1754 "History list for some commands that read shell commands.
1755
1756Maximum length of the history list is determined by the value
1757of `history-length', which see.")
1752 1758
1753(defvar shell-command-switch "-c" 1759(defvar shell-command-switch "-c"
1754 "Switch used to have the shell execute its command line argument.") 1760 "Switch used to have the shell execute its command line argument.")