emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 460c357: Support MSW filename style for ant compila


From: Vincent Belaïche
Subject: [Emacs-diffs] master 460c357: Support MSW filename style for ant compilation error regexp
Date: Sun, 04 Oct 2015 05:59:58 +0000

branch: master
commit 460c3576761bfeca942ab46660cf8b1346552535
Author: Vincent Belaïche <address@hidden>
Commit: Vincent Belaïche <address@hidden>

    Support MSW filename style for ant compilation error regexp
    
    * etc/compilation.txt (symbol ant):
    * lisp/progmodes/compile.el (compilation-error-regexp-alist-alist): Support 
MSW filename style
---
 etc/compilation.txt       |    2 +-
 lisp/progmodes/compile.el |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/etc/compilation.txt b/etc/compilation.txt
index f134f53..8f4986a 100644
--- a/etc/compilation.txt
+++ b/etc/compilation.txt
@@ -52,7 +52,7 @@ jikes are the ending line and ending column.
     [javac] /src/DataBaseTestCase.java:27: unreported exception ...
     [javac] /src/DataBaseTestCase.java:49: warning: finally clause cannot 
complete normally
     [jikes]  foo.java:3:5:7:9: blah blah
-
+  [javadoc] c:\MyProject\Polynomial.java:560: error: unknown tag: math
 
 * Bash v2
 
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 9cb367a..9e2d625 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))
      " in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1)
 
     (ant
-     "^[ \t]*\\[[^] \n]+\\][ \t]*\\([^: 
\n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):\\([0-9]+\\):\\([0-9]+\\):\\)?\
+     "^[ \t]*\\[[^] \n]+\\][ \t]*\\(\\(?:[A-Za-z]:\\\\\\)?[^: 
\n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):\\([0-9]+\\):\\([0-9]+\\):\\)?\
 \\( warning\\)?" 1 (2 . 4) (3 . 5) (6))
 
     (bash



reply via email to

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