1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 16:51:06 -07:00

(compilation-error-regexp-alist): Add regexp for Sun ada.

This commit is contained in:
Roland McGrath 1995-08-04 18:02:02 +00:00
parent 8ad6fb8d8c
commit cfda7e6dda

View file

@ -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...])