From cfda7e6ddafae0b9b49e4831d4716cabf6037218 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 4 Aug 1995 18:02:02 +0000 Subject: [PATCH] (compilation-error-regexp-alist): Add regexp for Sun ada. --- lisp/progmodes/compile.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 4a0890af682..29de92e8cc1 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -189,6 +189,10 @@ of[ \t]+\"?\\([^\":\n]+\\)\"?:" 3 2) ;; 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...]) -- 2.39.2