# HG changeset patch # User Gerd Moellmann # Date 941109617 0 # Node ID 11ac69b741320336f2259b04974af2b6cf9cf216 # Parent b29cfbc6c189461060a2ee3d6971ab848a87447f (compilation-error-regexp-alist): Recognize MIPS Pro 7.3 compiler error message syntax. diff -r b29cfbc6c189 -r 11ac69b74132 lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Thu Oct 28 11:12:54 1999 +0000 +++ b/lisp/progmodes/compile.el Thu Oct 28 11:20:17 1999 +0000 @@ -312,7 +312,12 @@ ;; cf90-113 f90comp: ERROR NSE, File = Hoved.f90, Line = 16, Column = 3 (".* ERROR [a-zA-Z0-9 ]+, File = \\(.+\\), Line = \\([0-9]+\\), Column = \\([0-9]+\\)" 1 2 3) + + ;; MIPS Pro 7.3 compiler on SGI's + ;; cc-1020 CC: ERROR File = /home/deb/toolsopt/menv/src/bin/fizt/processPgp.cpp, Line = 12 + ("^.*File\\s-+=\\s-+\\(.*\\),\\s-+Line\\s-+=\\s-+\\([0-9]+\\)" 1 2) ) + "Alist that specifies how to match errors in compiler output. Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...]) If REGEXP matches, the FILE-IDX'th subexpression gives the file name, and