diff options
| author | Roland McGrath | 1996-01-06 21:11:08 +0000 |
|---|---|---|
| committer | Roland McGrath | 1996-01-06 21:11:08 +0000 |
| commit | 369d3cdc63858889059cd8172a7374df79ef9883 (patch) | |
| tree | e2066d24c2e43f47571cbb74f2e3d9a3ee4904ad | |
| parent | b1707ae4658aa4fea99bbc616a0bdd4728f7748d (diff) | |
| download | emacs-369d3cdc63858889059cd8172a7374df79ef9883.tar.gz emacs-369d3cdc63858889059cd8172a7374df79ef9883.zip | |
Mon Nov 6 18:01:01 1995 Dave Love <d.love@dl.ac.uk>
* compile.el (compilation-error-regexp-alist): Add MIPS lint
regexps.
| -rw-r--r-- | lisp/progmodes/compile.el | 6 |
1 files changed, 6 insertions, 0 deletions
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].") | |||
| 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 | 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) | ||
| 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: |