Function: debugger-step-through
debugger-step-through is an interactive and byte-compiled function
defined in debug.el.gz.
Signature
(debugger-step-through)
Documentation
Proceed, stepping through subexpressions of this expression.
Enter another debugger on next entry to eval, apply or funcall.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/debug.el.gz
(defun debugger-step-through ()
"Proceed, stepping through subexpressions of this expression.
Enter another debugger on next entry to eval, apply or funcall."
(interactive)
(setq debugger-step-after-exit t)
(setq debugger-jumping-flag t)
(setq debugger-will-be-back t)
(add-hook 'post-command-hook 'debugger-reenable)
(message "Proceeding, will debug on next eval or call.")
(exit-recursive-edit))