Mercurial > emacs
changeset 82102:5b55db78e6d8
(compilation-error-regexp-alist-alist): Add support for the Maden build tool.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 25 Jul 2007 04:32:23 +0000 |
parents | 2b59748c35cf |
children | fac8f5421213 |
files | lisp/ChangeLog lisp/progmodes/compile.el |
diffstat | 2 files changed, 10 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Wed Jul 25 00:54:44 2007 +0000 +++ b/lisp/ChangeLog Wed Jul 25 04:32:23 2007 +0000 @@ -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>
--- a/lisp/progmodes/compile.el Wed Jul 25 00:54:44 2007 +0000 +++ b/lisp/progmodes/compile.el Wed Jul 25 04:32:23 2007 +0000 @@ -167,6 +167,10 @@ "^[ \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)