comparison lisp/progmodes/compile.el @ 11359:18c571c257aa

(compilation-error-regexp-alist): Remove superfluous SGI cc regexp.
author Roland McGrath <roland@gnu.org>
date Mon, 10 Apr 1995 16:45:47 +0000
parents 1401dd853db7
children 9702de178097
comparison
equal deleted inserted replaced
11358:cba458f0dc21 11359:18c571c257aa
178 ("\n[EW], \\([^(\n]*\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)" 1 2 3) 178 ("\n[EW], \\([^(\n]*\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)" 1 2 3)
179 179
180 ;; GNU messages with program name and optional column number. 180 ;; GNU messages with program name and optional column number.
181 ("\n[^0-9 \n\t:]+:[ \t]*\\([^ \n\t:]+\\):\ 181 ("\n[^0-9 \n\t:]+:[ \t]*\\([^ \n\t:]+\\):\
182 \\([0-9]+\\):\\(\\([0-9]+\\)[: \t]\\)?" 1 2 4) 182 \\([0-9]+\\):\\(\\([0-9]+\\)[: \t]\\)?" 1 2 4)
183
184 ;; SGI Irix 5.2 compiler warnings
185 ;; cfe: Warning 835: vpr_tiff.c, line 65: No prototype for the call to rint
186 ("ning [0-9]+: \\([^,\" \n\t]+\\)[,:] \\(line \\)?\\([0-9]+\\):" 1 3)
187 ) 183 )
188 "Alist that specifies how to match errors in compiler output. 184 "Alist that specifies how to match errors in compiler output.
189 Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...]) 185 Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...])
190 If REGEXP matches, the FILE-IDX'th subexpression gives the file name, and 186 If REGEXP matches, the FILE-IDX'th subexpression gives the file name, and
191 the LINE-IDX'th subexpression gives the line number. If COLUMN-IDX is 187 the LINE-IDX'th subexpression gives the line number. If COLUMN-IDX is