]> git.eshelyaron.com Git - emacs.git/commitdiff
(compilation-error-regexp-alist):
authorRichard M. Stallman <rms@gnu.org>
Fri, 4 Jul 1997 21:05:11 +0000 (21:05 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 4 Jul 1997 21:05:11 +0000 (21:05 +0000)
Support for IAR Systems C compiler added.

lisp/progmodes/compile.el

index 96dd255b37b09083c2b34be6a0e4b8cd4acf0781..61019f56879500840d83cc885e6742d41dad6ab7 100644 (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)