[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[AUCTeX-diffs] GNU AUCTeX branch, simplify-TeX-parse-error, updated. c4b
From: |
Tassilo Horn |
Subject: |
[AUCTeX-diffs] GNU AUCTeX branch, simplify-TeX-parse-error, updated. c4b87247f141f0291ed9b1bc25521b3b39137058 |
Date: |
Sat, 19 Sep 2015 12:01:09 +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, simplify-TeX-parse-error has been updated
via c4b87247f141f0291ed9b1bc25521b3b39137058 (commit)
from dde22742b9743adb408b01c5349816ac6c76faba (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 c4b87247f141f0291ed9b1bc25521b3b39137058
Author: Tassilo Horn <address@hidden>
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 358b5d8..823f041 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
2015-09-19 Tassilo Horn <address@hidden>
* tex-buf.el (TeX-error-overview): Fix typo in error message.
+ (TeX-TeX-sentinel): Fix error parsing.
2015-09-13 Arash Esbati <address@hidden>
diff --git a/tex-buf.el b/tex-buf.el
index b5725d4..a03f5fd 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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [AUCTeX-diffs] GNU AUCTeX branch, simplify-TeX-parse-error, updated. c4b87247f141f0291ed9b1bc25521b3b39137058,
Tassilo Horn <=