From: Richard M. Stallman Date: Sun, 29 Aug 1999 19:54:39 +0000 (+0000) Subject: (compilation-error-regexp-alist): New item for SGI IRIX MipsPro compilers. X-Git-Tag: emacs-pretest-21.0.90~7006 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e3c0f9ded6f68f9fded9904afaca2e7d6e5bc75a;p=emacs.git (compilation-error-regexp-alist): New item for SGI IRIX MipsPro compilers. --- diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 117819c527e..7b35a30e08f 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -303,6 +303,11 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2) ;; Error 24 at (2:progran.f90) : syntax error ("Error [0-9]+ at (\\([0-9]*\\):\\([^)\n]+\\))" 2 1) + ;; SGI IRIX MipsPro compilers: + ;; cc-1070 cc: ERROR File = linkl.c, Line = 38 + (".*: ERROR File = \\(.+\\), Line = \\([0-9]+\\)" 1 2) + (".*: WARNING File = \\(.+\\), Line = \\([0-9]+\\)" 1 2) + ;; Sun F90 error messages: ;; cf90-113 f90comp: ERROR NSE, File = Hoved.f90, Line = 16, Column = 3 (".* ERROR [a-zA-Z0-9 ]+, File = \\(.+\\), Line = \\([0-9]+\\), Column = \\([0-9]+\\)"