comparison lisp/progmodes/compile.el @ 14048:1a0cc425fb62

Mon Nov 6 18:01:01 1995 Dave Love <d.love@dl.ac.uk> * compile.el (compilation-error-regexp-alist): Add MIPS lint regexps.
author Roland McGrath <roland@gnu.org>
date Sat, 06 Jan 1996 21:11:08 +0000
parents 2df0227ff613
children d35edcfdefc1
comparison
equal deleted inserted replaced
14047:2df0227ff613 14048:1a0cc425fb62
132 ;; bloofle defined( /users/wolfgang/foo.c(4) ), but never used 132 ;; bloofle defined( /users/wolfgang/foo.c(4) ), but never used
133 ;; This used to be 133 ;; This used to be
134 ;; ("[ \t(]+\\([^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]+" 1 2) 134 ;; ("[ \t(]+\\([^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]+" 1 2)
135 ;; which is regexp Impressionism - it matches almost anything! 135 ;; which is regexp Impressionism - it matches almost anything!
136 ("([ \t]*\\([^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\))" 1 2) 136 ("([ \t]*\\([^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\))" 1 2)
137
138 ;; MIPS lint pass<n>; looks good for SunPro lint also
139 ;; TrimMask (255) in solomon.c may be indistinguishable from TrimMasks (93) in solomon.c due to truncation
140 ("[^ ]+ (\\([0-9]+\\)) in \\([^ ]+\\)" 2 1)
141 ;; name defined but never used: LinInt in cmap_calc.c(199)
142 ("in \\([^(]+\\)(\\([0-9]+\\))$" 1 2)
137 143
138 ;; Ultrix 3.0 f77: 144 ;; Ultrix 3.0 f77:
139 ;; fort: Severe: addstf.f, line 82: Missing operator or delimiter symbol 145 ;; fort: Severe: addstf.f, line 82: Missing operator or delimiter symbol
140 ;; Some SGI cc version: 146 ;; Some SGI cc version:
141 ;; cfe: Warning 835: foo.c, line 2: something 147 ;; cfe: Warning 835: foo.c, line 2: something