]> git.eshelyaron.com Git - emacs.git/commitdiff
(eval-expression-print-level)
authorLuc Teirlinck <teirllm@auburn.edu>
Sat, 4 Jun 2005 22:04:29 +0000 (22:04 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Sat, 4 Jun 2005 22:04:29 +0000 (22:04 +0000)
(eval-expression-print-length, eval-expression-debug-on-error): Doc fixes.

lisp/simple.el

index 9a4ba9badcfcd54a9385b3f00b8fdf9cf43a1be3..ddd2b752a377e2d943d7b2395c676b203e435902 100644 (file)
@@ -920,21 +920,21 @@ in *Help* buffer.  See also the command `describe-char'."
 (defvar read-expression-history nil)
 
 (defcustom eval-expression-print-level 4
-  "*Value to use for `print-level' when printing value in `eval-expression'.
+  "Value for `print-level' while printing value in `eval-expression'.
 A value of nil means no limit."
   :group 'lisp
   :type '(choice (const :tag "No Limit" nil) integer)
   :version "21.1")
 
 (defcustom eval-expression-print-length 12
-  "*Value to use for `print-length' when printing value in `eval-expression'.
+  "Value for `print-length' while printing value in `eval-expression'.
 A value of nil means no limit."
   :group 'lisp
   :type '(choice (const :tag "No Limit" nil) integer)
   :version "21.1")
 
 (defcustom eval-expression-debug-on-error t
-  "*Non-nil means set `debug-on-error' when evaluating in `eval-expression'.
+  "If non-nil set `debug-on-error' to t in `eval-expression'.
 If nil, don't change the value of `debug-on-error'."
   :group 'lisp
   :type 'boolean