Variable: texinfo-update-menu-lower-regexps
texinfo-update-menu-lower-regexps is a variable defined in
texnfo-upd.el.gz.
Value
((1 concat "\\(^@\\(" texinfo-chapter-level-regexp "\\|"
texinfo-section-level-regexp "\\|" texinfo-subsection-level-regexp
"\\|" texinfo-subsubsection-level-regexp "\\)\\>[ ]*\\)")
(2 concat "\\(^@\\(" texinfo-section-level-regexp "\\|"
texinfo-subsection-level-regexp "\\|"
texinfo-subsubsection-level-regexp "\\)\\>[ ]*\\)")
(3 concat "\\(^@\\(" texinfo-subsection-level-regexp "\\|"
texinfo-subsubsection-level-regexp "\\)\\>[ ]+\\)")
(4 concat "\\(^@\\(" texinfo-subsubsection-level-regexp
"\\)\\>[ ]+\\)")
(5 . "a\\(^\\)"))
Documentation
Regexps for searching for lower level sections in a Texinfo file.
The keys are strings specifying the general hierarchical level in the document; the values are regular expressions.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texnfo-upd.el.gz
(defvar texinfo-update-menu-lower-regexps
'((1 .
(concat
"\\(^@\\("
texinfo-chapter-level-regexp
"\\|"
texinfo-section-level-regexp
"\\|"
texinfo-subsection-level-regexp
"\\|"
texinfo-subsubsection-level-regexp
"\\)\\>[ \t]*\\)"))
(2 .
(concat
"\\(^@\\("
texinfo-section-level-regexp
"\\|"
texinfo-subsection-level-regexp
"\\|"
texinfo-subsubsection-level-regexp
"\\)\\>[ \t]*\\)"))
(3 .
(concat
"\\(^@\\("
texinfo-subsection-level-regexp
"\\|"
texinfo-subsubsection-level-regexp
"\\)\\>[ \t]+\\)"))
(4 .
(concat
"\\(^@\\("
texinfo-subsubsection-level-regexp
"\\)\\>[ \t]+\\)"))
;; There's nothing below 5, use a bogus regexp that can't match.
(5 . "a\\(^\\)"))
"Regexps for searching for lower level sections in a Texinfo file.
The keys are strings specifying the general hierarchical level in the
document; the values are regular expressions.")