diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-20 17:40:40 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-20 17:40:40 +0000 |
commit | 507c92471fab82af331576861b4573c31346a804 (patch) | |
tree | a62a7d579cd9b82445efbbf07ee9106b7d0d6350 /lisp/cus-start.el | |
parent | a7d6bdac9f6adb2727f761cd6a4b61b18e10b141 (diff) | |
download | emacs-507c92471fab82af331576861b4573c31346a804.tar.gz emacs-507c92471fab82af331576861b4573c31346a804.tar.bz2 emacs-507c92471fab82af331576861b4573c31346a804.zip |
(debug-on-quit): Define like debug-on-error.
Diffstat (limited to 'lisp/cus-start.el')
-rw-r--r-- | lisp/cus-start.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index e3950dd82ec..efa46c37bda 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el @@ -93,7 +93,12 @@ (symbol :format "%v")) (const :tag "always" t))) (debug-ignored-errors debug (repeat (choice symbol regexp))) - (debug-on-quit debug choice) + (debug-on-quit debug + (choice (const :tag "off") + (repeat :menu-tag "When" + :value (nil) + (symbol :format "%v")) + (const :tag "always" t))) ;; fileio.c (insert-default-directory minibuffer boolean) ;; frame.c |