diff options
author | Andreas Schwab <schwab@suse.de> | 1998-10-30 11:00:07 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-10-30 11:00:07 +0000 |
commit | 7ff1b00e83f8027862db9b4067c3596c3b78767c (patch) | |
tree | 40cdfc42a38c0fb8315b631d0259a2e093771b1b /lisp/emacs-lisp/edebug.el | |
parent | 0ba87ff4f34c52c23de2617061e3b1114a82f466 (diff) | |
download | emacs-7ff1b00e83f8027862db9b4067c3596c3b78767c.tar.gz emacs-7ff1b00e83f8027862db9b4067c3596c3b78767c.tar.bz2 emacs-7ff1b00e83f8027862db9b4067c3596c3b78767c.zip |
(edebug-initial-mode): Fix customize type.
(edebug-on-error): Fix customize type to match that of
debug-on-error.
Diffstat (limited to 'lisp/emacs-lisp/edebug.el')
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index ae111e735ba..a1c7b1e3a03 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -181,7 +181,7 @@ Go-nonstop, trace, Trace-fast, continue, and Continue-fast." :type '(choice (const step) (const next) (const go) (const Go-nonstop) (const trace) (const Trace-fast) (const continue) - (const continue-fast)) + (const Continue-fast)) :group 'edebug) (defcustom edebug-trace nil @@ -243,7 +243,11 @@ these errors are signaled from Lisp code whether or not the signal is handled by a `condition-case'. This option is useful for debugging signals that *are* handled since they would otherwise be missed. After execution is resumed, the error is signaled again." - :type '(choice boolean (repeat string)) + :type '(choice (const :tag "off") + (repeat :menu-tag "When" + :value (nil) + (symbol :format "%v")) + (const :tag "always" t)) :group 'edebug) (defcustom edebug-on-quit t |