]> git.eshelyaron.com Git - emacs.git/commitdiff
(compilation-error-regexp-alist-alist):
authorNick Roberts <nickrob@snap.net.nz>
Thu, 19 Feb 2009 06:54:22 +0000 (06:54 +0000)
committerNick Roberts <nickrob@snap.net.nz>
Thu, 19 Feb 2009 06:54:22 +0000 (06:54 +0000)
Move entry for maven (alphabetical order).

lisp/progmodes/compile.el

index 00bd33bc39cabc5b3099a1024c20e555704f4356..36c3e79b80dd11d605b682c498d555a802ba8e7b 100644 (file)
@@ -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)