aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong <[email protected]>2011-08-20 22:24:07 -0400
committerChong Yidong <[email protected]>2011-08-20 22:24:07 -0400
commit02e5c89e678bf4fa9d29bcc1c4064e44672d7dde (patch)
tree60c772d1e44a5f3375e5250e79c7549390cc8355
parentee31aabc4ee4086d5c78dbc93dfbab07b9ecc2a7 (diff)
Fix to `ant' compile regexp.
* lisp/progmodes/compile.el (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to `ant' regexp.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/progmodes/compile.el2
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 53fbdf0008..7ef01205bd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -2,6 +2,8 @@
* progmodes/compile.el (compilation-error-properties): Fix
confusion between file struct and message struct (Bug#9319).
+ (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
+ `ant' regexp.
* net/browse-url.el (browse-url-firefox): Don't call
browse-url-firefox-sentinel unless using -remote (Bug#9328).
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 33bd9ff96a..2fb0ac879b 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -145,7 +145,7 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1))
(ant
"^[ \t]*\\[[^] \n]+\\][ \t]*\\([^: \n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):\\([0-9]+\\):\\([0-9]+\\):\\)?\
-\\( warning\\)?" 1 (2 . 4) (3 . 5) (4))
+\\( warning\\)?" 1 (2 . 4) (3 . 5) (6))
(bash
"^\\([^: \n\t]+\\): line \\([0-9]+\\):" 1 2)