bug-gnu-emacs
[Top][All Lists]
Advanced

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

[patch] 21.3 compile.el - Apache project Ant (java) error support


From: Jari Aalto+mail.emacs
Subject: [patch] 21.3 compile.el - Apache project Ant (java) error support
Date: Thu, 14 Aug 2003 23:44:12 +0300
User-agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/20.7 (windows-nt) (i386-*-nt5.0.2195)

Please include, my papers are at FSF.
Jari

2003-08-14 Thu  Jari Aalto  <jari.aalto@poboxes.com>

        * progmodes/compile.el (compilation-error-regexp-alist):
        Added Java ANt error detection as described in document
        http://ant.apache.org/faq.html

Index: compile.el
===================================================================
RCS file: 
/cygdrive/h/data/version-control/cvsroot/emacs/gnu-emacs/lisp213/progmodes/compile.el,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -IId: -b -w -u -r1.1.1.1 -r1.2
--- compile.el  26 Jun 2003 18:06:37 -0000      1.1.1.1
+++ compile.el  14 Aug 2003 20:37:05 -0000      1.2
@@ -370,6 +370,14 @@
     ;; cf90-113 f90comp: ERROR NSE, File = Hoved.f90, Line = 16, Column = 3
     (".* ERROR [a-zA-Z0-9 ]+, File = \\(.+\\), Line = \\([0-9]+\\), Column = 
\\([0-9]+\\)"
      1 2 3)
+
+    ;; See http://ant.apache.org/faq.html
+    ;; Ant Java: works for jikes
+    ("^\\s-*\\[[^]]*\\]\\s-*\\(.+\\):\\([0-9]+\\):\\([0-9]+\\):[0-9]+:[0-9]+:" 
1 2 3)
+
+    ;; Ant Java: works for javac
+    ("^\\s-*\\[[^]]*\\]\\s-*\\(.+\\):\\([0-9]+\\):" 1 2)
+
     )
 
   "Alist that specifies how to match errors in compiler output.





reply via email to

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