monnier pushed a commit to branch externals/auctex
in repository elpa.
commit 2eea3026339a151c478ad5b06cbda45e18d00edf
Author: Tassilo Horn <[email protected]>
Date: Tue Dec 17 10:03:04 2013 +0100
Revert "Skip comment or file in parens in output."
This reverts commit 363b751003c4b425b4b6c511740c95366481207c.
---
ChangeLog | 5 -----
tex-buf.el | 7 +------
2 files changed, 1 insertions(+), 11 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 02e9772..786dcad 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,3 @@
-2013-12-17 Luc Van Eycken <[email protected]>
-
- * tex-buf.el (TeX-parse-error): Skip comment (or file) between
- parentheses.
-
2013-12-01 Tassilo Horn <[email protected]>
* latex.el (LaTeX-common-initialization): Move disabling of
diff --git a/tex-buf.el b/tex-buf.el
index b4f851f..efc19b5 100644
--- a/tex-buf.el
+++ b/tex-buf.el
@@ -1482,10 +1482,6 @@ You might want to examine and modify the free variables
`file',
(concat
;; TeX error
"^\\(!\\|\\(.*?\\):[0-9]+:\\) \\|"
- ;; Skip comment (or file) between parentheses in one line
- ;; Avoids problems with "Driver (autodetected):" from hyperref
- ;; and with "(version 2006.09.02)." from supp-pdf.mkii
- "([^()\r\n{}]*)\\|"
;; New file
"(\\(\"[^\"]*?\"\\|/*\
\\(?:\\.+[^()\r\n{} \\/]*\\|[^()\r\n{} .\\/]+\
@@ -1575,8 +1571,7 @@ You might want to examine and modify the free variables
`file',
((match-beginning 6)
(setq TeX-error-file
(list (TeX-match-buffer 6)))
- t)
- (t t)))))
+ t)))))
(defun TeX-error ()
"Display an error."