summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorNick Roberts <nickrob@snap.net.nz>2009-02-19 06:54:22 +0000
committerNick Roberts <nickrob@snap.net.nz>2009-02-19 06:54:22 +0000
commit8fca05449a139e7436fd4eb984f9f1e0c5cbdbac (patch)
tree72e28d663f561a6b3420d299e54b34010a3bf9f7 /lisp
parent1c427abdd29679f9f736b3c501d373516e13dea1 (diff)
downloademacs-8fca05449a139e7436fd4eb984f9f1e0c5cbdbac.tar.gz
emacs-8fca05449a139e7436fd4eb984f9f1e0c5cbdbac.tar.bz2
emacs-8fca05449a139e7436fd4eb984f9f1e0c5cbdbac.zip
(compilation-error-regexp-alist-alist):
Move entry for maven (alphabetical order).
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/compile.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 00bd33bc39c..36c3e79b80d 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -179,10 +179,6 @@ 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)
@@ -281,6 +277,10 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1))
(1 (compilation-error-properties 2 3 nil nil nil 0 nil)
append)))
+ (maven
+ ;; Maven is a popular build tool for Java. Maven is Free Software.
+ "\\(.*?\\):\\[\\([0-9]+\\),\\([0-9]+\\)\\]" 1 2 3)
+
;; Should be lint-1, lint-2 (SysV lint)
(mips-1
" (\\([0-9]+\\)) in \\([^ \n]+\\)" 2 1)