From 369d3cdc63858889059cd8172a7374df79ef9883 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sat, 6 Jan 1996 21:11:08 +0000 Subject: [PATCH] Mon Nov 6 18:01:01 1995 Dave Love * compile.el (compilation-error-regexp-alist): Add MIPS lint regexps. --- lisp/progmodes/compile.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 28f2f6da714..40957a9b34e 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -135,6 +135,12 @@ or when it is used with \\[next-error] or \\[compile-goto-error].") ;; which is regexp Impressionism - it matches almost anything! ("([ \t]*\\([^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\))" 1 2) + ;; MIPS lint pass; looks good for SunPro lint also + ;; TrimMask (255) in solomon.c may be indistinguishable from TrimMasks (93) in solomon.c due to truncation + ("[^ ]+ (\\([0-9]+\\)) in \\([^ ]+\\)" 2 1) + ;; name defined but never used: LinInt in cmap_calc.c(199) + ("in \\([^(]+\\)(\\([0-9]+\\))$" 1 2) + ;; Ultrix 3.0 f77: ;; fort: Severe: addstf.f, line 82: Missing operator or delimiter symbol ;; Some SGI cc version: -- 2.39.2