diff options
| author | Roland McGrath | 1994-02-17 00:11:28 +0000 |
|---|---|---|
| committer | Roland McGrath | 1994-02-17 00:11:28 +0000 |
| commit | 9481474b9dd036431c8fd4b7d827ef3effba52ad (patch) | |
| tree | 9496c6d6ff1ebf036fb7b594afcbbb8d13f908f4 | |
| parent | b26bc18b9e7ac9ac160201c3021208c20ef91cf6 (diff) | |
| download | emacs-9481474b9dd036431c8fd4b7d827ef3effba52ad.tar.gz emacs-9481474b9dd036431c8fd4b7d827ef3effba52ad.zip | |
(copmilation-error-regexp-alist): Tighten up Ultrix 3.0 f77 regexp to
exclude : from file names; avoids lossage when : appears in error text.
| -rw-r--r-- | lisp/progmodes/compile.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index e2ff867fd92..0e3b30e5691 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -130,7 +130,7 @@ or when it is used with \\[next-error] or \\[compile-goto-error].") | |||
| 130 | ;; Unknown who does this: | 130 | ;; Unknown who does this: |
| 131 | ;; Line 45 of "foo.c": bloofel undefined | 131 | ;; Line 45 of "foo.c": bloofel undefined |
| 132 | ("\n\\(Error on \\)?[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+\ | 132 | ("\n\\(Error on \\)?[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+\ |
| 133 | of[ \t]+\"?\\([^\"\n]+\\)\"?:" 3 2) | 133 | of[ \t]+\"?\\([^\":\n]+\\)\"?:" 3 2) |
| 134 | 134 | ||
| 135 | ;; Apollo cc, 4.3BSD fc: | 135 | ;; Apollo cc, 4.3BSD fc: |
| 136 | ;; "foo.f", line 3: Error: syntax error near end of statement | 136 | ;; "foo.f", line 3: Error: syntax error near end of statement |