# HG changeset patch # User Richard M. Stallman # Date 862178094 0 # Node ID 52780f61eb76503062ae79c11689378591495265 # Parent 9df604cbe7cc6aca40fddc01628b0908af894966 (compilation-error-regexp-alist): Add regexp for Perl -w. diff -r 9df604cbe7cc -r 52780f61eb76 lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Sun Apr 27 20:50:24 1997 +0000 +++ b/lisp/progmodes/compile.el Sun Apr 27 21:54:54 1997 +0000 @@ -234,6 +234,10 @@ ;; Sun ada (VADS, Solaris): ;; /home3/xdhar/rcds_rc/main.a, line 361, char 6:syntax error: "," inserted ("\\([^, \n\t]+\\), line \\([0-9]+\\), char \\([0-9]+\\)[:., \(-]" 1 2 3) + + ;; Perl -w: + ;; syntax error at automake line 922, near "':'" + ("\n.* at \\([^ ]+\\) line \\([0-9]+\\)," 1 2) ) "Alist that specifies how to match errors in compiler output. Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...])