Mercurial > emacs
changeset 36721:65461941776d
(texinfo-update-menu-lower-regexps):
Fix the named and regexp used for subsubsections.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 11 Mar 2001 18:57:19 +0000 |
parents | d587de1b655a |
children | 5a49fa31ec0b |
files | lisp/textmodes/texnfo-upd.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/textmodes/texnfo-upd.el Sun Mar 11 17:55:15 2001 +0000 +++ b/lisp/textmodes/texnfo-upd.el Sun Mar 11 18:57:19 2001 +0000 @@ -1205,7 +1205,8 @@ "\\(^@\\(" texinfo-subsubsection-level-regexp "\\)\\>[ \t]+\\)")) - (subsubsection . "nothing lower")) + ;; 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.")