Variable: texinfo-update-menu-higher-regexps

texinfo-update-menu-higher-regexps is a variable defined in texnfo-upd.el.gz.

Value

((1 . "^@node [         ]*DIR")
 (2 . "^@node [         ]*top[  ]*\\(,\\|$\\)")
 (3 concat "\\(^@\\(" texinfo-chapter-level-regexp "\\)\\>[  ]*\\)")
 (4 concat "\\(^@\\(" texinfo-section-level-regexp "\\|" texinfo-chapter-level-regexp "\\)\\>[       ]*\\)")
 (5 concat "\\(^@\\(" texinfo-subsection-level-regexp "\\|" texinfo-section-level-regexp "\\|" texinfo-chapter-level-regexp "\\)\\>[         ]*\\)"))

Documentation

Regexps for searching for higher 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-higher-regexps
  '((1 . "^@node [ \t]*DIR")
    (2 . "^@node [ \t]*top[ \t]*\\(,\\|$\\)")
    (3 .
     (concat
      "\\(^@\\("
      texinfo-chapter-level-regexp
      "\\)\\>[ \t]*\\)"))
    (4 .
     (concat
      "\\(^@\\("
      texinfo-section-level-regexp
      "\\|"
      texinfo-chapter-level-regexp
      "\\)\\>[ \t]*\\)"))
    (5 .
     (concat
      "\\(^@\\("
      texinfo-subsection-level-regexp
      "\\|"
      texinfo-section-level-regexp
      "\\|"
      texinfo-chapter-level-regexp
      "\\)\\>[ \t]*\\)")))
  "Regexps for searching for higher level sections in a Texinfo file.
The keys are strings specifying the general hierarchical level in the
document; the values are regular expressions.")