Function: texinfo-menu-first-node

texinfo-menu-first-node is a byte-compiled function defined in texnfo-upd.el.gz.

Signature

(texinfo-menu-first-node BEGINNING END)

Documentation

Locate first node of the section the menu will be placed in.

Return position; do not move point. The menu will be located just before this position.

First argument is the position of the beginning of the section in which the menu will be located; second argument is the position of the end of that region; it limits the search.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/texnfo-upd.el.gz
(defun texinfo-menu-first-node (beginning end)
  "Locate first node of the section the menu will be placed in.
Return position; do not move point.
The menu will be located just before this position.

First argument is the position of the beginning of the section in
which the menu will be located; second argument is the position of the
end of that region; it limits the search."
  (save-excursion
    (goto-char beginning)
    (forward-line 1)
    (re-search-forward "^@node" end t)
    (line-beginning-position)))