all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [patch] 21.3 compile.el - Apache project Ant (java) error support
@ 2003-08-14 20:44 Jari Aalto+mail.emacs
  0 siblings, 0 replies; only message in thread
From: Jari Aalto+mail.emacs @ 2003-08-14 20:44 UTC (permalink / raw)



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.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-08-14 20:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-08-14 20:44 [patch] 21.3 compile.el - Apache project Ant (java) error support Jari Aalto+mail.emacs

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.