Function: reftex-select-jump-to-previous
reftex-select-jump-to-previous is an interactive and byte-compiled
function defined in reftex-sel.el.gz.
Signature
(reftex-select-jump-to-previous)
Documentation
Jump back to where previous selection process left off.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-sel.el.gz
(defun reftex-select-jump-to-previous ()
"Jump back to where previous selection process left off."
(interactive)
(let (pos)
(cond
((and (local-variable-p 'reftex-last-data (current-buffer))
reftex-last-data
(setq pos (text-property-any (point-min) (point-max)
:data reftex-last-data)))
(goto-char pos))
((and (local-variable-p 'reftex-last-line (current-buffer))
(integerp reftex-last-line))
(goto-char (point-min))
(forward-line (1- reftex-last-line)))
(t (ding)))))