Function: debugger-continue
debugger-continue is an interactive and byte-compiled function defined
in debug.el.gz.
Signature
(debugger-continue)
Documentation
Continue, evaluating this expression without stopping.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/debug.el.gz
(defun debugger-continue ()
"Continue, evaluating this expression without stopping."
(interactive)
(unless debugger-may-continue
(error "Cannot continue"))
(message "Continuing.")
;; Check to see if we've flagged some frame for debug-on-exit, in which
;; case we'll probably come back to the debugger soon.
(dolist (frame backtrace-frames)
(when (plist-get (backtrace-frame-flags frame) :debug-on-exit)
(setq debugger-will-be-back t)))
(exit-recursive-edit))