diff options
| -rw-r--r-- | lisp/progmodes/compile.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 096932eb5f0..4a4a469a45e 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -234,6 +234,10 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2) | |||
| 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...]) |