From b1b56e0136110e1074287c220f6af13511f56e31 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 4 Jul 1997 21:05:11 +0000 Subject: [PATCH] (compilation-error-regexp-alist): Support for IAR Systems C compiler added. --- lisp/progmodes/compile.el | 5 +++++ 1 file changed, 5 insertions(+) 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) -- 2.39.2