Function: edebug-where
edebug-where is an interactive and byte-compiled function defined in
edebug.el.gz.
Signature
(edebug-where)
Documentation
Show the debug windows and where we stopped in the program.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defun edebug-where ()
"Show the debug windows and where we stopped in the program."
(interactive)
(if (not edebug-active)
(error "Edebug is not active"))
;; Restore the window configuration to what it last was inside.
;; But it is not always set. - experiment
;;(if edebug-inside-windows
;; (edebug-set-windows edebug-inside-windows))
(edebug-pop-to-buffer edebug-buffer)
(goto-char edebug-point))