From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: [jari.aalto@poboxes.com: [patch] 21.3 compile.el - Apache project Ant (java) error support] Date: Sat, 16 Aug 2003 20:36:47 -0400 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: Reply-To: rms@gnu.org NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1061080831 3325 80.91.224.253 (17 Aug 2003 00:40:31 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 17 Aug 2003 00:40:31 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Sun Aug 17 02:40:29 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19oBav-0006jS-00 for ; Sun, 17 Aug 2003 02:40:29 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 19oBcc-0000z7-00 for ; Sun, 17 Aug 2003 02:42:14 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19oBar-0003ac-OY for emacs-devel@quimby.gnus.org; Sat, 16 Aug 2003 20:40:25 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19oBZx-00032f-1V for emacs-devel@gnu.org; Sat, 16 Aug 2003 20:39:29 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19oBZQ-0002hl-KU for emacs-devel@gnu.org; Sat, 16 Aug 2003 20:39:27 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19oBZQ-0002h2-1j for emacs-devel@gnu.org; Sat, 16 Aug 2003 20:38:56 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.20) id 19oBXL-0000SR-Gs; Sat, 16 Aug 2003 20:36:47 -0400 Original-To: emacs-devel@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:15984 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:15984 Would someone please install this? ------- Start of forwarded message ------- To: gnu-emacs-bug@moderators.isc.org From: jari.aalto@poboxes.com (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: bug-gnu-emacs-bounces+rms=gnu.org@gnu.org Please include, my papers are at FSF. Jari 2003-08-14 Thu Jari Aalto * 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 Bug-gnu-emacs@gnu.org http://mail.gnu.org/mailman/listinfo/bug-gnu-emacs ------- End of forwarded message -------