Function: texinfo--end-of-defun
texinfo--end-of-defun is a byte-compiled function defined in
texinfo.el.gz.
Signature
(texinfo--end-of-defun)
Documentation
Go to the start of the next @node line.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texinfo.el.gz
(defun texinfo--end-of-defun ()
"Go to the start of the next @node line."
(when (looking-at-p "@node")
(forward-line))
(if (re-search-forward "^@node " nil t)
(goto-char (match-beginning 0))
(goto-char (point-max))))