Function: texinfo--beginning-of-defun

texinfo--beginning-of-defun is a byte-compiled function defined in texinfo.el.gz.

Signature

(texinfo--beginning-of-defun &optional ARG)

Documentation

Go to the previous @node line.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/texinfo.el.gz
(defun texinfo--beginning-of-defun (&optional arg)
  "Go to the previous @node line."
  (while (and (> arg 0)
              (re-search-backward "^@node " nil t))
    (setq arg (1- arg))))