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.
This commit is contained in:
parent
b8b42c2315
commit
d667318a7f
1 changed files with 2 additions and 2 deletions
|
@ -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."
|
||||
|
|
Loading…
Add table
Reference in a new issue