]> code.delx.au - gnu-emacs/commitdiff
(compilation-error-regexp-alist-alist): Add support for the Maden build tool.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 25 Jul 2007 04:32:23 +0000 (04:32 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 25 Jul 2007 04:32:23 +0000 (04:32 +0000)
lisp/ChangeLog
lisp/progmodes/compile.el

index 15732e651c691751dc4e37d9a68c5ac971bd046a..9193079e618e235dbb078a81a3cf735102575f05 100644 (file)
@@ -1,7 +1,11 @@
+2007-07-25  Joakim Verona  <joakim@verona.se>  (tiny change)
+
+       * progmodes/compile.el (compilation-error-regexp-alist-alist):
+       Add support for the Maden build tool.
+
 2007-07-25  William Xu  <william.xwl@gmail.com>  (tiny change)
 
-       * net/webjump.el (webjump-url-encode): Fix for non-ASCII
-       characters.
+       * net/webjump.el (webjump-url-encode): Fix for non-ASCII characters.
 
 2007-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
 
index ec34dd61e96534c6cb955a34a3403de32e09949c..a35bb6be2a212338c183a918bda0216b2b3b6c63 100644 (file)
@@ -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)