From: Gerd Moellmann <gerd@gnu.org>
Date: Thu, 30 Aug 2001 11:20:45 +0000 (+0000)
Subject: (eval-expression-print-level): Change the type
X-Git-Tag: emacs-pretest-21.0.105~24
X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=170adbff1161c17e98ad603ca285733a3dddaa51;p=emacs.git

(eval-expression-print-level): Change the type
of the defcustom to allow nil.
---

diff --git a/lisp/simple.el b/lisp/simple.el
index 832ef806832..5130680b3e7 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -566,7 +566,7 @@ in *Help* buffer.  See also the command `describe-char-after'."
 (defcustom eval-expression-print-level 4
   "*Value to use for `print-level' when printing value in `eval-expression'."
   :group 'lisp
-  :type 'integer
+  :type '(choice (const nil integer))
   :version "21.1")
 
 (defcustom eval-expression-print-length 12