changeset 63022:5e1ac4f79779

(eval-expression-print-level) (eval-expression-print-length, eval-expression-debug-on-error): Doc fixes.
author Luc Teirlinck <teirllm@auburn.edu>
date Sat, 04 Jun 2005 22:04:29 +0000
parents 81475b55bf74
children cc9dd228e2e6
files lisp/simple.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/simple.el	Sat Jun 04 20:40:00 2005 +0000
+++ b/lisp/simple.el	Sat Jun 04 22:04:29 2005 +0000
@@ -920,21 +920,21 @@
 (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