Fix to `ant' compile regexp.
authorChong Yidong <cyd@stupidchicken.com>
Sun, 21 Aug 2011 02:24:07 +0000 (22:24 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 21 Aug 2011 02:24:07 +0000 (22:24 -0400)
* lisp/progmodes/compile.el (compilation-error-regexp-alist-alist):
  Fix 2011-05-09 change to `ant' regexp.

lisp/ChangeLog
lisp/progmodes/compile.el

index 53fbdf0..7ef0120 100644 (file)
@@ -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).
index 33bd9ff..2fb0ac8 100644 (file)
@@ -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)