changeset 18477:270080940256

(compilation-error-regexp-alist): New item, for Oracle compiler.
author Richard M. Stallman <rms@gnu.org>
date Fri, 27 Jun 1997 22:35:21 +0000
parents b1a322f1666d
children 74399f15f71e
files lisp/progmodes/compile.el
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/compile.el	Fri Jun 27 22:31:00 1997 +0000
+++ b/lisp/progmodes/compile.el	Fri Jun 27 22:35:21 1997 +0000
@@ -262,6 +262,11 @@
     ;; 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...])