diff options
| author | Richard M. Stallman | 1993-06-18 21:40:46 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-06-18 21:40:46 +0000 |
| commit | 6d68d7937b9a0a79ecaef2dfb264c52fccf0e2ce (patch) | |
| tree | 6dc461a423e9a169ca9a5a1ddd948b066c382483 /lisp/progmodes | |
| parent | b7c0f208a35f6edfdad7bf312ab4ba2b3bc78d1f (diff) | |
| download | emacs-6d68d7937b9a0a79ecaef2dfb264c52fccf0e2ce.tar.gz emacs-6d68d7937b9a0a79ecaef2dfb264c52fccf0e2ce.zip | |
(compilation-error-regexp-alist): Generalize the
Apollo/BSD4.3 regexp to handle IBM RS6k too.
Diffstat (limited to 'lisp/progmodes')
| -rw-r--r-- | lisp/progmodes/compile.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 619a3f13960..12b866ce3d8 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -131,7 +131,9 @@ or when it is used with \\[next-error] or \\[compile-goto-error].") | |||
| 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 |