Function: reftex-select-next-heading
reftex-select-next-heading is an interactive and byte-compiled
function defined in reftex-sel.el.gz.
Signature
(reftex-select-next-heading &optional ARG)
Documentation
Move to next table of contents line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-sel.el.gz
(defun reftex-select-next-heading (&optional arg)
"Move to next table of contents line."
(interactive "p")
(end-of-line)
(re-search-forward "^ " nil t arg)
(beginning-of-line))