comparison lisp/progmodes/compile.el @ 17582:52780f61eb76

(compilation-error-regexp-alist): Add regexp for Perl -w.
author Richard M. Stallman <rms@gnu.org>
date Sun, 27 Apr 1997 21:54:54 +0000
parents 6ee6f94817dc
children a09fd9348b0d
comparison
equal deleted inserted replaced
17581:9df604cbe7cc 17582:52780f61eb76
232 ("\\([^( \n\t]+\\)(\\([0-9]+\\):\\([0-9]+\\)) : " 1 2 3) 232 ("\\([^( \n\t]+\\)(\\([0-9]+\\):\\([0-9]+\\)) : " 1 2 3)
233 233
234 ;; Sun ada (VADS, Solaris): 234 ;; Sun ada (VADS, Solaris):
235 ;; /home3/xdhar/rcds_rc/main.a, line 361, char 6:syntax error: "," inserted 235 ;; /home3/xdhar/rcds_rc/main.a, line 361, char 6:syntax error: "," inserted
236 ("\\([^, \n\t]+\\), line \\([0-9]+\\), char \\([0-9]+\\)[:., \(-]" 1 2 3) 236 ("\\([^, \n\t]+\\), line \\([0-9]+\\), char \\([0-9]+\\)[:., \(-]" 1 2 3)
237
238 ;; Perl -w:
239 ;; syntax error at automake line 922, near "':'"
240 ("\n.* at \\([^ ]+\\) line \\([0-9]+\\)," 1 2)
237 ) 241 )
238 "Alist that specifies how to match errors in compiler output. 242 "Alist that specifies how to match errors in compiler output.
239 Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...]) 243 Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...])
240 If REGEXP matches, the FILE-IDX'th subexpression gives the file name, and 244 If REGEXP matches, the FILE-IDX'th subexpression gives the file name, and
241 the LINE-IDX'th subexpression gives the line number. If COLUMN-IDX is 245 the LINE-IDX'th subexpression gives the line number. If COLUMN-IDX is