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. dd9adef7b2fee77fa2da0


From: Tassilo Horn
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. dd9adef7b2fee77fa2da0be5f6891e2d2649a46e
Date: Thu, 03 Sep 2015 06:27:55 +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  dd9adef7b2fee77fa2da0be5f6891e2d2649a46e (commit)
      from  66b97ff2b71ca9ed13e691dbc9b51b0f418f183b (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 dd9adef7b2fee77fa2da0be5f6891e2d2649a46e
Author: Tassilo Horn <address@hidden>
Date:   Thu Sep 3 08:26:50 2015 +0200

    Case-sensitive mode detection + AMS-TeX fixes
    
    * tex.el (TeX-tex-mode): Don't ignore case when matching the
    TeX-format-list regexes.
    (TeX-expand-list): Add expansion of %(PDFout) to -output-format
    option for AmS-TeX.
    (TeX-command-list): Use it instead of calling the non-existing
    pdfamstex command.

diff --git a/ChangeLog b/ChangeLog
index e679b54..d57cf18 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2015-09-03  Tassilo Horn  <address@hidden>
+
+       * tex.el (TeX-tex-mode): Don't ignore case when matching the
+       TeX-format-list regexes.
+       (TeX-expand-list): Add expansion of %(PDFout) to -output-format
+       option for AmS-TeX.
+       (TeX-command-list): Use it instead of calling the non-existing
+       pdfamstex command.
+
 2015-09-02  Tassilo Horn  <address@hidden>
 
        * font-latex.el: Remove code which set up font-latex for use with
diff --git a/tex.el b/tex.el
index 3e43bb4..7513734 100644
--- a/tex.el
+++ b/tex.el
@@ -132,7 +132,7 @@ If nil, none is specified."
      (texinfo-mode) :help "Run Makeinfo with Info output")
     ("Makeinfo HTML" "makeinfo %(extraopts) --html %t" TeX-run-compile nil
      (texinfo-mode) :help "Run Makeinfo with HTML output")
-    ("AmSTeX" "%(PDF)amstex %(extraopts) %`%S%(PDFout)%(mode)%' %t"
+    ("AmSTeX" "amstex %(PDFout) %(extraopts) %`%S%(mode)%' %t"
      TeX-run-TeX nil (ams-tex-mode) :help "Run AMSTeX")
     ;; support for ConTeXt  --pg
     ;; first version of ConTeXt to support nonstopmode: 2003.2.10
@@ -455,7 +455,11 @@ string."
                    "pdf"
                  "")))
     ("%(PDFout)" (lambda ()
-                  (cond ((and (eq TeX-engine 'xetex)
+                  (cond ((eq major-mode 'ams-tex-mode)
+                         (if TeX-PDF-mode
+                             " -output-format=pdf"
+                           " -output-format=dvi"))
+                        ((and (eq TeX-engine 'xetex)
                               (not TeX-PDF-mode))
                          " -no-pdf")
                         ((and (eq TeX-engine 'luatex)
@@ -3398,7 +3402,7 @@ The algorithm is as follows:
                       (regexp-quote TeX-esc)
                       "\\)*\\)\\(%+ *\\)"))
                     (entry TeX-format-list)
-                    answer)
+                    answer case-fold-search)
                 (while (and entry (not answer))
                   (if (re-search-forward (nth 2 (car entry))
                                          10000 t)

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

Summary of changes:
 ChangeLog |    9 +++++++++
 tex.el    |   10 +++++++---
 2 files changed, 16 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

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