Function: reftex-toc-next
reftex-toc-next is an interactive and byte-compiled function defined
in reftex-toc.el.gz.
Signature
(reftex-toc-next &optional ARG)
Documentation
Move to next selectable item.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-toc.el.gz
(defun reftex-toc-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))))