Function: reftex-index-previous

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

Signature

(reftex-index-previous &optional ARG)

Documentation

Move to previous selectable item.

Key Bindings

Source Code

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