# HG changeset patch # User Stefan Monnier # Date 984337039 0 # Node ID 65461941776d04ac4d85d180487d8e90e8536e80 # Parent d587de1b655adf079d47655dc0f1021ee87a51a7 (texinfo-update-menu-lower-regexps): Fix the named and regexp used for subsubsections. diff -r d587de1b655a -r 65461941776d lisp/textmodes/texnfo-upd.el --- 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.")