auctex-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[AUCTeX-diffs] GNU AUCTeX branch, master, updated. 9917ced65cb5679387f2f


From: Mosè Giordano
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. 9917ced65cb5679387f2fa858e8618f2d8a23f18
Date: Wed, 29 Oct 2014 12:14:06 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU AUCTeX".

The branch, master has been updated
       via  9917ced65cb5679387f2fa858e8618f2d8a23f18 (commit)
      from  1ac5d751a517e4ca085f9fd916e22a167f0ef222 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 9917ced65cb5679387f2fa858e8618f2d8a23f18
Author: Mosè Giordano <address@hidden>
Date:   Wed Oct 29 13:13:06 2014 +0100

    Fix in LaTeX-largest-level-set for XEmacs compatibility.
    
    * latex.el (LaTeX-largest-level-set): Set `outline-heading-alist'
    only if it is bound.

diff --git a/ChangeLog b/ChangeLog
index 32afec3..897a9b8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2014-10-29  Mosè Giordano  <address@hidden>
 
+       * latex.el (LaTeX-largest-level-set): Set `outline-heading-alist'
+       only if it is bound.
+
        * .gitignore: Ignore preview/preview.el.
 
        * Makefile.in (DISTCLEANFILES): Add preview/preview.el.
diff --git a/latex.el b/latex.el
index 565807b..33e4720 100644
--- a/latex.el
+++ b/latex.el
@@ -287,7 +287,9 @@ Additionally the function will invalidate the section 
submenu in
 order to let the menu filter regenerate it."
   (setq LaTeX-largest-level (LaTeX-section-level section))
   (let ((offset (LaTeX-outline-offset)))
-    (when (> offset 0)
+    (when (and (> offset 0)
+              ;; XEmacs does not know `outline-heading-alist'.
+              (boundp 'outline-heading-alist))
       (let (lst)
        (dolist (tup outline-heading-alist)
          (setq lst (cons (cons (car tup)

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog |    3 +++
 latex.el  |    4 +++-
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

[Prev in Thread] Current Thread [Next in Thread]