diff lisp/textmodes/texnfo-upd.el @ 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 93a6ef17b7f3
children b174db545cfd
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.")