changeset 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 d6809f9c7d37
children c11564bad20f
files lisp/simple.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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