>From e49b775ce539c75dc0fdadd027765b90c5c9b440 Mon Sep 17 00:00:00 2001 From: Leo Liu Date: Sat, 17 Apr 2010 12:48:39 +0100 Subject: [PATCH 1/6] Fix a bug in LaTeX-outline-level for customised outline-regexp See also bug report: http://permalink.gmane.org/gmane.emacs.auctex.bugs/1648. --- latex.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/latex.el b/latex.el index c06e365f..525e0e98 100644 --- a/latex.el +++ b/latex.el @@ -314,8 +314,7 @@ (defun LaTeX-outline-level () ((TeX-look-at LaTeX-section-list) (max 1 (+ (TeX-look-at LaTeX-section-list) (LaTeX-outline-offset)))) - (t - (error "Unrecognized header"))))))) + (t (outline-level))))))) (defun LaTeX-outline-name () "Guess a name for the current header line." -- 1.8.2