changeset 12767:287cc74602fa

(compilation-error-regexp-alist): Add regexp for Sun ada.
author Roland McGrath <roland@gnu.org>
date Fri, 04 Aug 1995 18:02:02 +0000
parents eed43624bc00
children 68b1359ecd66
files lisp/progmodes/compile.el
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/compile.el	Fri Aug 04 03:03:01 1995 +0000
+++ b/lisp/progmodes/compile.el	Fri Aug 04 18:02:02 1995 +0000
@@ -189,6 +189,10 @@
     ;;  foo.c(3:8) : warning EDC0833: Implicit return statement encountered.
     ;;  foo.c(5:5) : error EDC0350: Syntax error.
     ("\n\\([^( \n\t]+\\)(\\([0-9]+\\):\\([0-9]+\\)) : " 1 2 3)
+
+    ;; Sun ada (VADS, Solaris):
+    ;;  /home3/xdhar/rcds_rc/main.a, line 361, char 6:syntax error: "," inserted
+    ("\n\\([^, ]+\\), line \\([0-9]+\\), char \\([0-9]+\\)[:., \(-]" 1 2 3)
     )
   "Alist that specifies how to match errors in compiler output.
 Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...])