From: Richard M. Stallman Date: Fri, 4 Jul 1997 21:05:11 +0000 (+0000) Subject: (compilation-error-regexp-alist): X-Git-Tag: emacs-20.1~1327 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b1b56e0136110e1074287c220f6af13511f56e31;p=emacs.git (compilation-error-regexp-alist): Support for IAR Systems C compiler added. --- diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 96dd255b37b..61019f56879 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -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)