Function: edebug-top-level-nonstop
edebug-top-level-nonstop is an interactive and byte-compiled function
defined in edebug.el.gz.
Signature
(edebug-top-level-nonstop)
Documentation
Set mode to Go-nonstop, and exit to top-level.
This is useful for exiting even if unwind-protect code may be executed.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defun edebug-top-level-nonstop ()
"Set mode to Go-nonstop, and exit to top-level.
This is useful for exiting even if `unwind-protect' code may be executed."
(interactive)
(setq edebug-execution-mode 'Go-nonstop)
(top-level))