Function: reftex-index-next
reftex-index-next is an interactive and byte-compiled function defined
in reftex-index.el.gz.
Signature
(reftex-index-next &optional ARG)
Documentation
Move to next selectable item.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-index.el.gz
(defun reftex-index-next (&optional _arg)
"Move to next selectable item."
(interactive "^")
(setq reftex-callback-fwd t)
(or (eobp) (forward-char 1))
(goto-char (or (next-single-property-change (point) :data)
(point)))
(unless (get-text-property (point) :data)
(goto-char (or (next-single-property-change (point) :data)
(point)))))