diff options
| -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." | |||
| 1156 | (defvar minibuffer-history nil | 1156 | (defvar minibuffer-history nil |
| 1157 | "Default minibuffer history list. | 1157 | "Default minibuffer history list. |
| 1158 | This is used for all minibuffer input | 1158 | This is used for all minibuffer input |
| 1159 | except when an alternate history list is specified.") | 1159 | except when an alternate history list is specified. |
| 1160 | |||
| 1161 | Maximum length of the history list is determined by the value | ||
| 1162 | of `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. |
| 1162 | If the value of this variable equals current minibuffer depth, | 1165 | 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 | |||
| 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 | |||
| 1756 | Maximum length of the history list is determined by the value | ||
| 1757 | of `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.") |