comparison lisp/progmodes/compile.el @ 102120:b39c9d4ea068

(compilation-error-regexp-alist-alist): Move entry for maven (alphabetical order).
author Nick Roberts <nickrob@snap.net.nz>
date Thu, 19 Feb 2009 06:54:22 +0000
parents 0d562146f921
children a23f964bc701
comparison
equal deleted inserted replaced
102119:fa72a817b1e0 102120:b39c9d4ea068
177 177
178 (ant 178 (ant
179 "^[ \t]*\\[[^] \n]+\\][ \t]*\\([^: \n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):[0-9]+:[0-9]+:\\)?\ 179 "^[ \t]*\\[[^] \n]+\\][ \t]*\\([^: \n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):[0-9]+:[0-9]+:\\)?\
180 \\( warning\\)?" 1 2 3 (4)) 180 \\( warning\\)?" 1 2 3 (4))
181 181
182 (maven
183 ;; Maven is a popular build tool for Java. Maven is Free Software.
184 "\\(.*?\\):\\[\\([0-9]+\\),\\([0-9]+\\)\\]" 1 2 3)
185
186 (bash 182 (bash
187 "^\\([^: \n\t]+\\): line \\([0-9]+\\):" 1 2) 183 "^\\([^: \n\t]+\\): line \\([0-9]+\\):" 1 2)
188 184
189 (borland 185 (borland
190 "^\\(?:Error\\|Warnin\\(g\\)\\) \\(?:[FEW][0-9]+ \\)?\ 186 "^\\(?:Error\\|Warnin\\(g\\)\\) \\(?:[FEW][0-9]+ \\)?\
278 ("`\\(\\(\\S +?\\)\\(?::\\([0-9]+\\)\\)?\\)['(]" nil nil 274 ("`\\(\\(\\S +?\\)\\(?::\\([0-9]+\\)\\)?\\)['(]" nil nil
279 (2 compilation-info-face) 275 (2 compilation-info-face)
280 (3 compilation-line-face nil t) 276 (3 compilation-line-face nil t)
281 (1 (compilation-error-properties 2 3 nil nil nil 0 nil) 277 (1 (compilation-error-properties 2 3 nil nil nil 0 nil)
282 append))) 278 append)))
279
280 (maven
281 ;; Maven is a popular build tool for Java. Maven is Free Software.
282 "\\(.*?\\):\\[\\([0-9]+\\),\\([0-9]+\\)\\]" 1 2 3)
283 283
284 ;; Should be lint-1, lint-2 (SysV lint) 284 ;; Should be lint-1, lint-2 (SysV lint)
285 (mips-1 285 (mips-1
286 " (\\([0-9]+\\)) in \\([^ \n]+\\)" 2 1) 286 " (\\([0-9]+\\)) in \\([^ \n]+\\)" 2 1)
287 (mips-2 287 (mips-2