Mercurial > emacs
comparison lisp/progmodes/compile.el @ 3825:ae1462a1a8d4
(compilation-error-regexp-alist): Generalize the
Apollo/BSD4.3 regexp to handle IBM RS6k too.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 18 Jun 1993 21:40:46 +0000 |
parents | 6b495ab7635e |
children | c5b6f641698a |
comparison
equal
deleted
inserted
replaced
3824:d7069bd44885 | 3825:ae1462a1a8d4 |
---|---|
129 ;; Line 45 of "foo.c": bloofel undefined (who does this?) | 129 ;; Line 45 of "foo.c": bloofel undefined (who does this?) |
130 ("\n[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+of[ \t]+\"\\([^\"\n]+\\)\":" 2 1) | 130 ("\n[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+of[ \t]+\"\\([^\"\n]+\\)\":" 2 1) |
131 | 131 |
132 ;; Apollo cc, 4.3BSD fc: | 132 ;; Apollo cc, 4.3BSD fc: |
133 ;; "foo.f", line 3: Error: syntax error near end of statement | 133 ;; "foo.f", line 3: Error: syntax error near end of statement |
134 ("\"\\([^,\" \n\t]+\\)\", line \\([0-9]+\\):" 1 2) | 134 ;; IBM RS6000: |
135 ;; "vvouch.c", line 19.5: 1506-046 (S) Syntax error. | |
136 ("\"\\([^,\" \n\t]+\\)\", line \\([0-9]+\\)[:.]" 1 2) | |
135 | 137 |
136 ;; MIPS RISC CC - the one distributed with Ultrix: | 138 ;; MIPS RISC CC - the one distributed with Ultrix: |
137 ;; ccom: Error: foo.c, line 2: syntax error | 139 ;; ccom: Error: foo.c, line 2: syntax error |
138 ("rror: \\([^,\" \n\t]+\\), line \\([0-9]+\\):" 1 2) | 140 ("rror: \\([^,\" \n\t]+\\), line \\([0-9]+\\):" 1 2) |
139 | 141 |