Function: texinfo-locate-menu-p

texinfo-locate-menu-p is a byte-compiled function defined in texnfo-upd.el.gz.

Signature

(texinfo-locate-menu-p)

Documentation

Find the next menu in the texinfo file.

If found, leave point after word menu on the @menu line, and return t. If a menu is not found, do not move point and return nil.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/texnfo-upd.el.gz
(defun texinfo-locate-menu-p ()
  "Find the next menu in the texinfo file.
If found, leave point after word `menu' on the `@menu' line, and return t.
If a menu is not found, do not move point and return nil."
  (re-search-forward "\\(^@menu\\)" nil t))