1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-12 16:23:57 +00:00

(eval-expression-print-level, eval-expression-print-length): Doc fixes.

This commit is contained in:
Richard M. Stallman 2001-12-18 23:39:21 +00:00
parent b3f04cedf4
commit d26b26dc59

View File

@ -571,14 +571,14 @@ in *Help* buffer. See also the command `describe-char-after'."
(defcustom eval-expression-print-level 4 (defcustom eval-expression-print-level 4
"*Value to use for `print-level' when printing value in `eval-expression'. "*Value to use for `print-level' when printing value in `eval-expression'.
Nil means no limit." A value of nil means no limit."
:group 'lisp :group 'lisp
:type '(choice (const :tag "No Limit" nil) integer) :type '(choice (const :tag "No Limit" nil) integer)
:version "21.1") :version "21.1")
(defcustom eval-expression-print-length 12 (defcustom eval-expression-print-length 12
"*Value to use for `print-length' when printing value in `eval-expression'. "*Value to use for `print-length' when printing value in `eval-expression'.
Nil means no limit." A value of nil means no limit."
:group 'lisp :group 'lisp
:type '(choice (const :tag "No Limit" nil) integer) :type '(choice (const :tag "No Limit" nil) integer)
:version "21.1") :version "21.1")