# HG changeset patch # User Roland McGrath # Date 742174318 0 # Node ID a37868b332ac3129eee9e94e71869c909e9d03ab # Parent ad0643aa3ebf3450667ea924cc19a7b0d514852c (compilation-error-regexp-alist): Broaden ``Line N of "FILE": msg'' regexp to also match Ultrix f77: ``Error on line N of FILE: msg''. diff -r ad0643aa3ebf -r a37868b332ac lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Thu Jul 08 22:42:14 1993 +0000 +++ b/lisp/progmodes/compile.el Thu Jul 08 23:31:58 1993 +0000 @@ -126,8 +126,12 @@ ;; which is regexp Impressionism - it matches almost anything! ("([ \t]*\\([^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\))" 1 2) - ;; Line 45 of "foo.c": bloofel undefined (who does this?) - ("\n[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+of[ \t]+\"\\([^\"\n]+\\)\":" 2 1) + ;; Ultrix 3.0 f77: + ;; Error on line 3 of t.f: Execution error unclassifiable statement + ;; Unknown who does this: + ;; Line 45 of "foo.c": bloofel undefined + ("\n\\(Error on \\)?[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+\ +of[ \t]+\"?\\([^\"\n]+\\)\"?:" 3 2) ;; Apollo cc, 4.3BSD fc: ;; "foo.f", line 3: Error: syntax error near end of statement