comparison lisp/progmodes/compile.el @ 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 e50e5d419c51
children 905444ab8d92
comparison
equal deleted inserted replaced
12766:eed43624bc00 12767:287cc74602fa
187 ;; IBM C/C++ Tools 2.01: 187 ;; IBM C/C++ Tools 2.01:
188 ;; foo.c(2:0) : informational EDC0804: Function foo is not referenced. 188 ;; foo.c(2:0) : informational EDC0804: Function foo is not referenced.
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.
194 Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...]) 198 Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...])
195 If REGEXP matches, the FILE-IDX'th subexpression gives the file name, and 199 If REGEXP matches, the FILE-IDX'th subexpression gives the file name, and
196 the LINE-IDX'th subexpression gives the line number. If COLUMN-IDX is 200 the LINE-IDX'th subexpression gives the line number. If COLUMN-IDX is