From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: joakim@verona.se Newsgroups: gmane.emacs.devel Subject: patch to support maven in compile.el Date: Mon, 23 Jul 2007 19:41:21 +0200 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1185212492 31647 80.91.229.12 (23 Jul 2007 17:41:32 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 23 Jul 2007 17:41:32 +0000 (UTC) To: emacs-devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jul 23 19:41:31 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1ID1uU-0004rW-UT for ged-emacs-devel@m.gmane.org; Mon, 23 Jul 2007 19:41:31 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ID1uU-00030h-2o for ged-emacs-devel@m.gmane.org; Mon, 23 Jul 2007 13:41:30 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ID1uR-00030b-B2 for emacs-devel@gnu.org; Mon, 23 Jul 2007 13:41:27 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ID1uP-00030O-Td for emacs-devel@gnu.org; Mon, 23 Jul 2007 13:41:26 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ID1uP-00030L-OC for emacs-devel@gnu.org; Mon, 23 Jul 2007 13:41:25 -0400 Original-Received: from proxy3.bredband.net ([195.54.101.73]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1ID1uP-000600-BU for emacs-devel@gnu.org; Mon, 23 Jul 2007 13:41:25 -0400 Original-Received: from kurono.home (83.227.131.3) by proxy3.bredband.net (7.3.121.3) id 46815014007D3779 for emacs-devel@gnu.org; Mon, 23 Jul 2007 19:41:22 +0200 User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.1.50 (gnu/linux) X-detected-kernel: Genre and OS details not recognized. X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:75374 Archived-At: Maven is a popular build tool for Java. Maven is free software. --- compile.el 2007-07-23 19:38:52.000000000 +0200 +++ /home/joakim/.elisp/compile.el 2007-07-20 15:34:17.000000000 +0200 @@ -167,6 +167,9 @@ "^[ \t]*\\[[^] \n]+\\][ \t]*\\([^: \n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):[0-9]+:[0-9]+:\\)?\ \\( warning\\)?" 1 2 3 (4)) + (maven + "\\(.*?\\):\\[\\([0-9]+\\),\\([0-9]+\\)\\]" 1 2 3) + (bash "^\\([^: \n\t]+\\): line \\([0-9]+\\):" 1 2) -- Joakim Verona