diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-07-25 04:32:23 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-07-25 04:32:23 +0000 |
commit | bffa7817189d138036ba6da7686e2a4e2701daa2 (patch) | |
tree | 270a60315fcc48d589d1f6774237fbf6e736922c | |
parent | 80f462b754a32ca4a059919cf2344793ec9eee29 (diff) | |
download | emacs-bffa7817189d138036ba6da7686e2a4e2701daa2.tar.gz |
(compilation-error-regexp-alist-alist): Add support for the Maden build tool.
-rw-r--r-- | lisp/ChangeLog | 8 | ||||
-rw-r--r-- | lisp/progmodes/compile.el | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 15732e651c6..9193079e618 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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> 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) |