From: Stephen Berman Date: Mon, 19 Nov 2018 22:12:52 +0000 (+0100) Subject: Fix two Edebug defcustoms (bug#33428) X-Git-Tag: emacs-26.1.91~99 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d667318a7f89a9daeffca6fb47503889bd23f3bd;p=emacs.git Fix two Edebug defcustoms (bug#33428) * lisp/emacs-lisp/edebug.el (edebug-print-length) (edebug-print-level): Fix customization type to allow setting the documented valid value nil via the Customize interface. --- diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index 7e4d244f5e2..939b3b82eae 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -191,11 +191,11 @@ Use this with caution since it is not debugged." (defcustom edebug-print-length 50 "If non-nil, default value of `print-length' for printing results in Edebug." - :type 'integer + :type '(choice integer (const nil)) :group 'edebug) (defcustom edebug-print-level 50 "If non-nil, default value of `print-level' for printing results in Edebug." - :type 'integer + :type '(choice integer (const nil)) :group 'edebug) (defcustom edebug-print-circle t "If non-nil, default value of `print-circle' for printing results in Edebug."