aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-06-27 22:35:21 +0000
committerRichard M. Stallman1997-06-27 22:35:21 +0000
commit7ce22b412650576014aa139443c27cb96e2d5ced (patch)
tree5174a2caf72dcd970427024743ad93316f7a2c98
parentb0383de261b73cc26a8a7d3069741928f1b9463f (diff)
downloademacs-7ce22b412650576014aa139443c27cb96e2d5ced.tar.gz
emacs-7ce22b412650576014aa139443c27cb96e2d5ced.zip
(compilation-error-regexp-alist): New item, for Oracle compiler.
-rw-r--r--lisp/progmodes/compile.el5
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)
262 ;; Perl -w: 262 ;; Perl -w:
263 ;; syntax error at automake line 922, near "':'" 263 ;; syntax error at automake line 922, near "':'"
264 (".* at \\([^ ]+\\) line \\([0-9]+\\)," 1 2) 264 (".* at \\([^ ]+\\) line \\([0-9]+\\)," 1 2)
265
266 ;; Oracle pro*c:
267 ;; Semantic error at line 528, column 5, file erosacqdb.pc:
268 ("Semantic error at line \\([0-9]+\\), column \\([0-9]+\\), file \\(.*\\):"
269 3 1 2)
265 ) 270 )
266 "Alist that specifies how to match errors in compiler output. 271 "Alist that specifies how to match errors in compiler output.
267Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...]) 272Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...])