From: Gerd Moellmann Date: Thu, 28 Oct 1999 11:20:17 +0000 (+0000) Subject: (compilation-error-regexp-alist): Recognize X-Git-Tag: emacs-pretest-21.0.90~6268 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=40d63d1feee77cd064dba63ee9dd3b39f51bb2e0;p=emacs.git (compilation-error-regexp-alist): Recognize MIPS Pro 7.3 compiler error message syntax. --- diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 3a3e2a631be..a8c592aaab6 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -312,7 +312,12 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2) ;; 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