1
0
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:
Gerd Moellmann 1999-12-19 13:12:28 +00:00
parent 556d73147e
commit 094e092801

View File

@ -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))