Merged from the latest developing branch.
[MacVim.git] / src / cleanlint.vim
blobe1199a152f5c9da408f20775b401b21a49fc86ab
1 " Vim tool: Filter output of splint
3 " Maintainer:   Bram Moolenaar <Bram@vim.org>
4 " Last Change:  2009 May 13
6 " Usage: redirect output of "make lint" to a file, edit that file with Vim and
7 " :call CleanLint()
8 " This deletes irrelevant messages.  What remains might be valid warnings.
10 fun! CleanLint()
11   g/Assignment of dev_t to __dev_t:/lockmarks d
12   g/Assignment of __dev_t to dev_t:/lockmarks d
13   g/Operands of == have incompatible types (__dev_t, dev_t): /lockmarks d
14   g/Operands of == have incompatible types (char_u, int): /lockmarks d
15   g/Assignment of char to char_u: /lockmarks d
16   g/Assignment of unsigned int to int: /lockmarks d
17   g/Assignment of int to unsigned int: /lockmarks d
18   g/Assignment of unsigned int to long int: /lockmarks d
19   g/Assignment of int to char_u: /lockmarks d
20   g/Function .* expects arg . to be wint_t gets int: /lockmarks d
21   g/Function .* expects arg . to be size_t gets int: /lockmarks d
22   g/Initial value of .* is type char, expects char_u: /lockmarks d
23   g/^ex_cmds.h:.* Function types are inconsistent. Parameter 1 is implicitly temp, but unqualified in assigned function:/lockmarks d
24   g/^ex_docmd.c:.* nospec_str/lockmarks d
25   g/^digraph.c.*Additional initialization errors for digraphdefault not reported/lockmarks d
26   g/Function strncasecmp expects arg 3 to be int gets size_t: /lockmarks d
27   g/^  Types are incompatible/lockmarks d
28   g/ To ignore signs in type comparisons use +ignoresigns/lockmarks d
29   g/ To allow arbitrary integral types to match any integral type, use +matchanyintegral./lockmarks d
30   g/ To allow arbitrary integral types to match long unsigned, use +longintegral./lockmarks d
31   g+ A variable is declared but never used. Use /.@unused@./ in front of declaration to suppress message.+lockmarks d
32 endfun