Function: debugger-frame-clear
debugger-frame-clear is an interactive and byte-compiled function
defined in debug.el.gz.
Signature
(debugger-frame-clear)
Documentation
Do not enter debugger when this frame exits.
Applies to the frame whose line point is on in the backtrace.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/debug.el.gz
(defun debugger-frame-clear ()
"Do not enter debugger when this frame exits.
Applies to the frame whose line point is on in the backtrace."
(interactive)
(backtrace-debug (debugger-frame-number) nil)
(setf
(cl-getf (backtrace-frame-flags (nth (backtrace-get-index) backtrace-frames))
:debug-on-exit)
nil)
(backtrace-update-flags))