mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-14 09:39:42 +00:00
Mon Nov 6 18:01:01 1995 Dave Love <d.love@dl.ac.uk>
* compile.el (compilation-error-regexp-alist): Add MIPS lint regexps.
This commit is contained in:
parent
b1707ae465
commit
369d3cdc63
@ -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<n>; 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:
|
||||
|
Loading…
Reference in New Issue
Block a user