diff options
| author | Richard M. Stallman | 1994-01-19 14:21:20 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-01-19 14:21:20 +0000 |
| commit | dfb8966419ebc8813cc1e4f3b579a3651b1ecc59 (patch) | |
| tree | 6bf0240092674892b6e8cdab5c6944bc1de9eea4 | |
| parent | e1f40b2841d36ba1c61e2343e04717c65677415d (diff) | |
| download | emacs-dfb8966419ebc8813cc1e4f3b579a3651b1ecc59.tar.gz emacs-dfb8966419ebc8813cc1e4f3b579a3651b1ecc59.zip | |
(compilation-error-regexp-alist): Handle DEC AXP OSF/1.
| -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 a448f007135..e2ff867fd92 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -144,7 +144,9 @@ of[ \t]+\"?\\([^\"\n]+\\)\"?:" 3 2) | |||
| 144 | 144 | ||
| 145 | ;; MIPS RISC CC - the one distributed with Ultrix: | 145 | ;; MIPS RISC CC - the one distributed with Ultrix: |
| 146 | ;; ccom: Error: foo.c, line 2: syntax error | 146 | ;; ccom: Error: foo.c, line 2: syntax error |
| 147 | ("rror: \\([^,\" \n\t]+\\), line \\([0-9]+\\):" 1 2) | 147 | ;; DEC AXP OSF/1 cc |
| 148 | ;; /usr/lib/cmplrs/cc/cfe: Error: foo.c: 1: blah blah | ||
| 149 | ("rror: \\([^,\" \n\t]+\\)[,:] \\(line \\)?\\([0-9]+\\):" 1 3) | ||
| 148 | 150 | ||
| 149 | ;; IBM AIX PS/2 C version 1.1: | 151 | ;; IBM AIX PS/2 C version 1.1: |
| 150 | ;; ****** Error number 140 in line 8 of file errors.c ****** | 152 | ;; ****** Error number 140 in line 8 of file errors.c ****** |