comparison lisp/simple.el @ 30189:df730ad35266

(eval-expression-print-length): Change custom type to allow entering nil as value.
author Gerd Moellmann <gerd@gnu.org>
date Thu, 13 Jul 2000 17:44:32 +0000
parents fa2c8534a53a
children a8a6780670ad
comparison
equal deleted inserted replaced
30188:d6809f9c7d37 30189:df730ad35266
532 :version "21.1") 532 :version "21.1")
533 533
534 (defcustom eval-expression-print-length 12 534 (defcustom eval-expression-print-length 12
535 "*Value to use for `print-length' when printing value in `eval-expression'." 535 "*Value to use for `print-length' when printing value in `eval-expression'."
536 :group 'lisp 536 :group 'lisp
537 :type 'integer 537 :type '(choice (const nil) integer)
538 :version "21.1") 538 :version "21.1")
539 539
540 (defcustom eval-expression-debug-on-error t 540 (defcustom eval-expression-debug-on-error t
541 "*Non-nil means set `debug-on-error' when evaluating in `eval-expression'. 541 "*Non-nil means set `debug-on-error' when evaluating in `eval-expression'.
542 If nil, don't change the value of `debug-on-error'." 542 If nil, don't change the value of `debug-on-error'."