emacs-devel
[Top][All Lists]
Advanced

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

address@hidden: [patch] 21.3 compile.el - Apache project Ant (java) erro


From: Richard Stallman
Subject: address@hidden: [patch] 21.3 compile.el - Apache project Ant (java) error support]
Date: Sat, 16 Aug 2003 20:36:47 -0400

Would someone please install this?

------- Start of forwarded message -------
To: address@hidden
From: address@hidden (Jari Aalto+mail.emacs)
Newsgroups: gnu.emacs.bug
Date: Thu, 14 Aug 2003 23:44:12 +0300
Organization: Elisa Internet customer
Cancel-Lock: sha1:k7UjzkmdHwzvn+RKrVXKdFAjpg4=
Cc: 
Subject: [patch] 21.3 compile.el - Apache project Ant (java) error support
Sender: address@hidden


Please include, my papers are at FSF.
Jari

2003-08-14 Thu  Jari Aalto  <address@hidden>

        * 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.



_______________________________________________
Bug-gnu-emacs mailing list
address@hidden
http://mail.gnu.org/mailman/listinfo/bug-gnu-emacs
------- End of forwarded message -------




reply via email to

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