From: Stefan Monnier Date: Sun, 11 Mar 2001 18:57:19 +0000 (+0000) Subject: (texinfo-update-menu-lower-regexps): X-Git-Tag: emacs-pretest-21.0.100~75 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=40153a944e75f80ac74b9d1279dc3e8347846777;p=emacs.git (texinfo-update-menu-lower-regexps): Fix the named and regexp used for subsubsections. --- diff --git a/lisp/textmodes/texnfo-upd.el b/lisp/textmodes/texnfo-upd.el index f964e411aa6..c1df0a6fca3 100644 --- a/lisp/textmodes/texnfo-upd.el +++ b/lisp/textmodes/texnfo-upd.el @@ -1205,7 +1205,8 @@ document; the values are regular expressions.") "\\(^@\\(" 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.")