mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-29 19:48:19 +00:00
(debugger-continue): Don't continue If
debugger-may-continue is nil.
This commit is contained in:
parent
556d73147e
commit
094e092801
@ -280,6 +280,8 @@ Enter another debugger on next entry to eval, apply or funcall."
|
||||
(defun debugger-continue ()
|
||||
"Continue, evaluating this expression without stopping."
|
||||
(interactive)
|
||||
(unless debugger-may-continue
|
||||
(error "Cannot continue"))
|
||||
(message "Continuing.")
|
||||
(exit-recursive-edit))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user