1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-26 19:18:50 +00:00

(compilation-error-regexp-alist):

Support for IAR Systems C compiler added.
This commit is contained in:
Richard M. Stallman 1997-07-04 21:05:11 +00:00
parent 5c6e3aa087
commit b1b56e0136

View File

@ -259,6 +259,11 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2)
;; foo.c(5:5) : error EDC0350: Syntax error.
("\\([^( \n\t]+\\)(\\([0-9]+\\):\\([0-9]+\\)) : " 1 2 3)
;; IAR Systems C Compiler:
;; "foo.c",3 Error[32]: Error message
;; "foo.c",3 Warning[32]: Error message
("\"\\(.*\\)\",\\([0-9]+\\)\\s-+\\(Error\\|Warning\\)\\[[0-9]+\\]:" 1 2)
;; Sun ada (VADS, Solaris):
;; /home3/xdhar/rcds_rc/main.a, line 361, char 6:syntax error: "," inserted
("\\([^, \n\t]+\\), line \\([0-9]+\\), char \\([0-9]+\\)[:., \(-]" 1 2 3)