diff options
| author | Richard M. Stallman <rms@gnu.org> | 1997-06-27 22:35:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1997-06-27 22:35:21 +0000 |
| commit | 7ce22b412650576014aa139443c27cb96e2d5ced (patch) | |
| tree | 5174a2caf72dcd970427024743ad93316f7a2c98 /lisp | |
| parent | b0383de261b73cc26a8a7d3069741928f1b9463f (diff) | |
| download | emacs-7ce22b412650576014aa139443c27cb96e2d5ced.tar.gz | |
(compilation-error-regexp-alist): New item, for Oracle compiler.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/progmodes/compile.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index c5233444f15..3662e935dbd 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -262,6 +262,11 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2) ;; Perl -w: ;; syntax error at automake line 922, near "':'" (".* at \\([^ ]+\\) line \\([0-9]+\\)," 1 2) + + ;; Oracle pro*c: + ;; Semantic error at line 528, column 5, file erosacqdb.pc: + ("Semantic error at line \\([0-9]+\\), column \\([0-9]+\\), file \\(.*\\):" + 3 1 2) ) "Alist that specifies how to match errors in compiler output. Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...]) |
