Function: reftex-index-quit
reftex-index-quit is an interactive and byte-compiled function defined
in reftex-index.el.gz.
Signature
(reftex-index-quit)
Documentation
Hide the *Index* window and do not move point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-index.el.gz
(defun reftex-index-quit ()
"Hide the *Index* window and do not move point."
(interactive)
(or (one-window-p) (delete-window))
(switch-to-buffer (marker-buffer reftex-index-return-marker))
(goto-char (or (marker-position reftex-index-return-marker) (point))))