aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2007-07-25 04:32:23 +0000
committerStefan Monnier2007-07-25 04:32:23 +0000
commitbffa7817189d138036ba6da7686e2a4e2701daa2 (patch)
tree270a60315fcc48d589d1f6774237fbf6e736922c
parent80f462b754a32ca4a059919cf2344793ec9eee29 (diff)
downloademacs-bffa7817189d138036ba6da7686e2a4e2701daa2.tar.gz
emacs-bffa7817189d138036ba6da7686e2a4e2701daa2.zip
(compilation-error-regexp-alist-alist): Add support for the Maden build tool.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/progmodes/compile.el4
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 @@
12007-07-25 Joakim Verona <joakim@verona.se> (tiny change)
2
3 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4 Add support for the Maden build tool.
5
12007-07-25 William Xu <william.xwl@gmail.com> (tiny change) 62007-07-25 William Xu <william.xwl@gmail.com> (tiny change)
2 7
3 * net/webjump.el (webjump-url-encode): Fix for non-ASCII 8 * net/webjump.el (webjump-url-encode): Fix for non-ASCII characters.
4 characters.
5 9
62007-07-24 Dan Nicolaescu <dann@ics.uci.edu> 102007-07-24 Dan Nicolaescu <dann@ics.uci.edu>
7 11
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))
167 "^[ \t]*\\[[^] \n]+\\][ \t]*\\([^: \n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):[0-9]+:[0-9]+:\\)?\ 167 "^[ \t]*\\[[^] \n]+\\][ \t]*\\([^: \n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):[0-9]+:[0-9]+:\\)?\
168\\( warning\\)?" 1 2 3 (4)) 168\\( warning\\)?" 1 2 3 (4))
169 169
170 (maven
171 ;; Maven is a popular build tool for Java. Maven is Free Software.
172 "\\(.*?\\):\\[\\([0-9]+\\),\\([0-9]+\\)\\]" 1 2 3)
173
170 (bash 174 (bash
171 "^\\([^: \n\t]+\\): line \\([0-9]+\\):" 1 2) 175 "^\\([^: \n\t]+\\): line \\([0-9]+\\):" 1 2)
172 176