aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-04 21:05:11 +0000
committerRichard M. Stallman1997-07-04 21:05:11 +0000
commitb1b56e0136110e1074287c220f6af13511f56e31 (patch)
tree464e54f43ae4d705d393d7bc2bb8b96fae0d03b3
parent5c6e3aa0878490f5997990dac02cd77648d2c211 (diff)
downloademacs-b1b56e0136110e1074287c220f6af13511f56e31.tar.gz
emacs-b1b56e0136110e1074287c220f6af13511f56e31.zip
(compilation-error-regexp-alist):
Support for IAR Systems C compiler added.
-rw-r--r--lisp/progmodes/compile.el5
1 files changed, 5 insertions, 0 deletions
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)
259 ;; foo.c(5:5) : error EDC0350: Syntax error. 259 ;; foo.c(5:5) : error EDC0350: Syntax error.
260 ("\\([^( \n\t]+\\)(\\([0-9]+\\):\\([0-9]+\\)) : " 1 2 3) 260 ("\\([^( \n\t]+\\)(\\([0-9]+\\):\\([0-9]+\\)) : " 1 2 3)
261 261
262 ;; IAR Systems C Compiler:
263 ;; "foo.c",3 Error[32]: Error message
264 ;; "foo.c",3 Warning[32]: Error message
265 ("\"\\(.*\\)\",\\([0-9]+\\)\\s-+\\(Error\\|Warning\\)\\[[0-9]+\\]:" 1 2)
266
262 ;; Sun ada (VADS, Solaris): 267 ;; Sun ada (VADS, Solaris):
263 ;; /home3/xdhar/rcds_rc/main.a, line 361, char 6:syntax error: "," inserted 268 ;; /home3/xdhar/rcds_rc/main.a, line 361, char 6:syntax error: "," inserted
264 ("\\([^, \n\t]+\\), line \\([0-9]+\\), char \\([0-9]+\\)[:., \(-]" 1 2 3) 269 ("\\([^, \n\t]+\\), line \\([0-9]+\\), char \\([0-9]+\\)[:., \(-]" 1 2 3)