diff options
| -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: |