Function: reftex-toc-show-calling-point

reftex-toc-show-calling-point is an interactive and byte-compiled function defined in reftex-toc.el.gz.

Signature

(reftex-toc-show-calling-point)

Documentation

Show point where reftex-toc was called from.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-toc.el.gz
(defun reftex-toc-show-calling-point ()
  "Show point where `reftex-toc' was called from."
  (interactive)
  (reftex-toc-dframe-p nil 'error)
  (let ((this-window (selected-window)))
    (unwind-protect
        (progn
          (switch-to-buffer-other-window
           (marker-buffer reftex-toc-return-marker))
          (goto-char (marker-position reftex-toc-return-marker))
          (recenter '(4)))
      (select-window this-window))))