Function: edebug-bounce-point
edebug-bounce-point is an interactive and byte-compiled function
defined in edebug.el.gz.
Signature
(edebug-bounce-point ARG)
Documentation
Bounce the point in the outside current buffer.
If prefix argument ARG is supplied, sit for that many seconds before returning. The default is one second.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defun edebug-bounce-point (arg)
"Bounce the point in the outside current buffer.
If prefix argument ARG is supplied, sit for that many seconds
before returning. The default is one second."
(interactive "p")
(if (not edebug-active)
(error "Edebug is not active"))
(save-excursion
;; If the buffer's currently displayed, avoid set-window-configuration.
(save-window-excursion
(edebug-pop-to-buffer edebug-outside-buffer)
(goto-char edebug-outside-point)
(message "Current buffer: %s Point: %s Mark: %s"
(current-buffer) (point)
(if (marker-buffer (mark-marker))
(marker-position (mark-marker)) "<not set>"))
(sit-for arg)
(edebug-pop-to-buffer edebug-buffer (car edebug-window-data)))))