Function: debugger-jump

debugger-jump is an interactive and byte-compiled function defined in debug.el.gz.

Signature

(debugger-jump)

Documentation

Continue to exit from this frame, with all debug-on-entry suspended.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/debug.el.gz
(defun debugger-jump ()
  "Continue to exit from this frame, with all `debug-on-entry' suspended."
  (interactive)
  (debugger-frame)
  (setq debugger-jumping-flag t)
  (add-hook 'post-command-hook 'debugger-reenable)
  (message "Continuing through this frame")
  (setq debugger-will-be-back t)
  (exit-recursive-edit))