aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-01-01 03:36:43 +0000
committerChong Yidong2009-01-01 03:36:43 +0000
commitd658acb641df40981d329df00e739715124043f0 (patch)
tree5df536110d1fac3c0fc710c407c78b344a1a7826
parent257c9b6526bbabc25af3de8283086d2bd42c94a5 (diff)
downloademacs-d658acb641df40981d329df00e739715124043f0.tar.gz
emacs-d658acb641df40981d329df00e739715124043f0.zip
(minibuffer-default): Add defvar.
-rw-r--r--lisp/simple.el5
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.
1052The functions `read-from-minibuffer' and `completing-read' bind
1053this 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'.
1052A value of nil means no limit." 1057A value of nil means no limit."