From bffa7817189d138036ba6da7686e2a4e2701daa2 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Wed, 25 Jul 2007 04:32:23 +0000 Subject: (compilation-error-regexp-alist-alist): Add support for the Maden build tool. --- lisp/progmodes/compile.el | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lisp/progmodes') diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index ec34dd61e96..a35bb6be2a2 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -167,6 +167,10 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1)) "^[ \t]*\\[[^] \n]+\\][ \t]*\\([^: \n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):[0-9]+:[0-9]+:\\)?\ \\( warning\\)?" 1 2 3 (4)) + (maven + ;; Maven is a popular build tool for Java. Maven is Free Software. + "\\(.*?\\):\\[\\([0-9]+\\),\\([0-9]+\\)\\]" 1 2 3) + (bash "^\\([^: \n\t]+\\): line \\([0-9]+\\):" 1 2) -- cgit v1.2.1