1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-19 18:13:55 +00:00

(toggle-debug-on-quit, toggle-debug-on-error): Doc fix.

This commit is contained in:
Eli Zaretskii 2001-06-22 10:38:20 +00:00
parent 7a03d9cdcf
commit 5f0e1d4262
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2001-06-22 Eli Zaretskii <eliz@is.elta.co.il>
* menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error): Doc
fix.
2001-06-21 Eli Zaretskii <eliz@is.elta.co.il>
* toolbar/tool-bar.el (tool-bar-setup): Remove the EXIT button.

View File

@ -576,11 +576,13 @@ Do the same for the keys of the same name."
(define-key menu-bar-options-menu [debug-on-quit]
(menu-bar-make-toggle toggle-debug-on-quit debug-on-quit
"Enter Debugger on Quit/C-g" "Debug on Quit %s"
"Toggle whether to enter the Lisp Debugger on Quit/C-g"
"Debug on Quit %s"
"Enter Lisp debugger when C-g is pressed"))
(define-key menu-bar-options-menu [debug-on-error]
(menu-bar-make-toggle toggle-debug-on-error debug-on-error
"Enter Debugger on Error" "Debug on Error %s"
"Toggle whether to enter the Lisp Debugger on Error"
"Debug on Error %s"
"Enter Lisp debugger when error is signaled"))
(define-key menu-bar-options-menu [debugger-separator]
'("--"))