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  5ed22c093e0310c4ad3d7adbfb0b34392486e545 (commit)
      from  9b5827c1fa7c1c1fcedfa47d8c4ef8917d4e5de4 (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 5ed22c093e0310c4ad3d7adbfb0b34392486e545
Author: Tassilo Horn <[email protected]>
Date:   Sat Sep 19 13:59:52 2015 +0200

    FiX TeX error parsing.
    
    * tex-buf.el (TeX-TeX-sentinel): Fix error parsing.

diff --git a/ChangeLog b/ChangeLog
index 68d0d29..7a90c90 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 2015-09-19  Tassilo Horn  <[email protected]>
 
        * tex-buf.el (TeX-error-overview): Fix typo in error message.
+       (TeX-TeX-sentinel): Fix error parsing.
 
 2015-09-13  Arash Esbati  <[email protected]>
 
diff --git a/tex-buf.el b/tex-buf.el
index 03237e8..bfe684e 100644
--- a/tex-buf.el
+++ b/tex-buf.el
@@ -1267,12 +1267,12 @@ Open the error overview if
 `TeX-error-overview-open-after-TeX-run' is non-nil and there are
 errors or warnings to show."
   (if (TeX-TeX-sentinel-check process name)
-      ()
+      (progn
+       (if TeX-parse-all-errors
+           (TeX-parse-all-errors))
+       (if (and TeX-error-overview-open-after-TeX-run TeX-error-list)
+           (TeX-error-overview)))
     (message (concat name ": formatted " (TeX-current-pages)))
-    (if TeX-parse-all-errors
-       (TeX-parse-all-errors))
-    (if (and TeX-error-overview-open-after-TeX-run TeX-error-list)
-       (TeX-error-overview))
     (if (with-current-buffer TeX-command-buffer
          (and TeX-PDF-via-dvips-ps2pdf TeX-PDF-mode))
        (setq TeX-command-next "Dvips")

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

Summary of changes:
 ChangeLog  |    1 +
 tex-buf.el |   10 +++++-----
 2 files changed, 6 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX

_______________________________________________
auctex-diffs mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/auctex-diffs

Reply via email to