emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r105515: Fix to `ant' compile regexp.


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105515: Fix to `ant' compile regexp.
Date: Sat, 20 Aug 2011 22:24:07 -0400
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105515
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Sat 2011-08-20 22:24:07 -0400
message:
  Fix to `ant' compile regexp.
  
  * lisp/progmodes/compile.el (compilation-error-regexp-alist-alist):
    Fix 2011-05-09 change to `ant' regexp.
modified:
  lisp/ChangeLog
  lisp/progmodes/compile.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-08-21 02:07:00 +0000
+++ b/lisp/ChangeLog    2011-08-21 02:24:07 +0000
@@ -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).

=== modified file 'lisp/progmodes/compile.el'
--- a/lisp/progmodes/compile.el 2011-08-21 02:07:00 +0000
+++ b/lisp/progmodes/compile.el 2011-08-21 02:24:07 +0000
@@ -145,7 +145,7 @@
 
     (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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]