diff 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
line wrap: on
line diff
--- a/lisp/simple.el	Thu Jul 13 17:43:58 2000 +0000
+++ b/lisp/simple.el	Thu Jul 13 17:44:32 2000 +0000
@@ -534,7 +534,7 @@
 (defcustom eval-expression-print-length 12
   "*Value to use for `print-length' when printing value in `eval-expression'."
   :group 'lisp
-  :type 'integer
+  :type '(choice (const nil) integer)
   :version "21.1")
 
 (defcustom eval-expression-debug-on-error t