aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1995-08-04 18:02:02 +0000
committerRoland McGrath1995-08-04 18:02:02 +0000
commitcfda7e6ddafae0b9b49e4831d4716cabf6037218 (patch)
tree19cf31c91917aa3a048764c692ab946bbfee23e1
parent8ad6fb8d8cd6d75fd49411e69f6c85cc9965edd1 (diff)
downloademacs-cfda7e6ddafae0b9b49e4831d4716cabf6037218.tar.gz
emacs-cfda7e6ddafae0b9b49e4831d4716cabf6037218.zip
(compilation-error-regexp-alist): Add regexp for Sun ada.
-rw-r--r--lisp/progmodes/compile.el4
1 files changed, 4 insertions, 0 deletions
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)
189 ;; foo.c(3:8) : warning EDC0833: Implicit return statement encountered. 189 ;; foo.c(3:8) : warning EDC0833: Implicit return statement encountered.
190 ;; foo.c(5:5) : error EDC0350: Syntax error. 190 ;; foo.c(5:5) : error EDC0350: Syntax error.
191 ("\n\\([^( \n\t]+\\)(\\([0-9]+\\):\\([0-9]+\\)) : " 1 2 3) 191 ("\n\\([^( \n\t]+\\)(\\([0-9]+\\):\\([0-9]+\\)) : " 1 2 3)
192
193 ;; Sun ada (VADS, Solaris):
194 ;; /home3/xdhar/rcds_rc/main.a, line 361, char 6:syntax error: "," inserted
195 ("\n\\([^, ]+\\), line \\([0-9]+\\), char \\([0-9]+\\)[:., \(-]" 1 2 3)
192 ) 196 )
193 "Alist that specifies how to match errors in compiler output. 197 "Alist that specifies how to match errors in compiler output.
194Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...]) 198Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...])