# HG changeset patch # User Richard M. Stallman # Date 935956479 0 # Node ID 5ff4e59e5f02ccfd6cc720fe74ef7322f6e022f1 # Parent 9a7891b32d1a2d14a04b571cb57ea4a8198e8160 (compilation-error-regexp-alist): New item for SGI IRIX MipsPro compilers. diff -r 9a7891b32d1a -r 5ff4e59e5f02 lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Sun Aug 29 19:53:27 1999 +0000 +++ b/lisp/progmodes/compile.el Sun Aug 29 19:54:39 1999 +0000 @@ -303,6 +303,11 @@ ;; 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]+\\)"