Function: reftex-toc-previous

reftex-toc-previous is an interactive and byte-compiled function defined in reftex-toc.el.gz.

Signature

(reftex-toc-previous &optional ARG)

Documentation

Move to previous selectable item.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-toc.el.gz
(defun reftex-toc-previous (&optional _arg)
  "Move to previous selectable item."
  (interactive)
  (setq reftex-callback-fwd nil)
  (goto-char (or (previous-single-property-change (point) :data)
                 (point))))