diff options
| author | Chong Yidong | 2009-01-01 03:36:43 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-01-01 03:36:43 +0000 |
| commit | d658acb641df40981d329df00e739715124043f0 (patch) | |
| tree | 5df536110d1fac3c0fc710c407c78b344a1a7826 | |
| parent | 257c9b6526bbabc25af3de8283086d2bd42c94a5 (diff) | |
| download | emacs-d658acb641df40981d329df00e739715124043f0.tar.gz emacs-d658acb641df40981d329df00e739715124043f0.zip | |
(minibuffer-default): Add defvar.
| -rw-r--r-- | lisp/simple.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index c5d036b1d9a..ca8ab23c853 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -1047,6 +1047,11 @@ in *Help* buffer. See also the command `describe-char'." | |||
| 1047 | (defvar minibuffer-completing-symbol nil | 1047 | (defvar minibuffer-completing-symbol nil |
| 1048 | "Non-nil means completing a Lisp symbol in the minibuffer.") | 1048 | "Non-nil means completing a Lisp symbol in the minibuffer.") |
| 1049 | 1049 | ||
| 1050 | (defvar minibuffer-default nil | ||
| 1051 | "The current default value or list of default values in the minibuffer. | ||
| 1052 | The functions `read-from-minibuffer' and `completing-read' bind | ||
| 1053 | this variable locally.") | ||
| 1054 | |||
| 1050 | (defcustom eval-expression-print-level 4 | 1055 | (defcustom eval-expression-print-level 4 |
| 1051 | "Value for `print-level' while printing value in `eval-expression'. | 1056 | "Value for `print-level' while printing value in `eval-expression'. |
| 1052 | A value of nil means no limit." | 1057 | A value of nil means no limit." |