diff options
author | Nick Roberts <nickrob@snap.net.nz> | 2009-02-19 06:54:22 +0000 |
---|---|---|
committer | Nick Roberts <nickrob@snap.net.nz> | 2009-02-19 06:54:22 +0000 |
commit | 8fca05449a139e7436fd4eb984f9f1e0c5cbdbac (patch) | |
tree | 72e28d663f561a6b3420d299e54b34010a3bf9f7 /lisp | |
parent | 1c427abdd29679f9f736b3c501d373516e13dea1 (diff) | |
download | emacs-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.el | 8 |
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) |