Function: reftex-toc-next-heading

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

Signature

(reftex-toc-next-heading &optional ARG)

Documentation

Move to next table of contents line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-toc.el.gz
(defun reftex-toc-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))