Function: texinfo-menu-end
texinfo-menu-end is a byte-compiled function defined in
texnfo-upd.el.gz.
Signature
(texinfo-menu-end)
Documentation
Return position of end of menu, but don't move point.
Signal an error if not end of menu.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texnfo-upd.el.gz
(defun texinfo-menu-end ()
"Return position of end of menu, but don't move point.
Signal an error if not end of menu."
(save-excursion
(if (re-search-forward "^@end menu" nil t)
(point)
(error "Menu does not have an end"))))