blob: e1199a152f5c9da408f20775b401b21a49fc86ab [file] [log] [blame]
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001" Vim tool: Filter output of splint
2"
3" Maintainer: Bram Moolenaar <Bram@vim.org>
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004" Last Change: 2009 May 13
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00005
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.
9
10fun! CleanLint()
Bram Moolenaar0ab2a882009-05-13 10:51:08 +000011 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
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000014 g/Operands of == have incompatible types (char_u, int): /lockmarks d
Bram Moolenaar0ab2a882009-05-13 10:51:08 +000015 g/Assignment of char to char_u: /lockmarks d
16 g/Assignment of unsigned int to int: /lockmarks d
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000017 g/Assignment of int to unsigned int: /lockmarks d
18 g/Assignment of unsigned int to long int: /lockmarks d
Bram Moolenaar0ab2a882009-05-13 10:51:08 +000019 g/Assignment of int to char_u: /lockmarks d
20 g/Function .* expects arg . to be wint_t gets int: /lockmarks d
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000021 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
Bram Moolenaar0ab2a882009-05-13 10:51:08 +000025 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
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000027 g/^ Types are incompatible/lockmarks d
Bram Moolenaar0ab2a882009-05-13 10:51:08 +000028 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
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000031 g+ A variable is declared but never used. Use /.@unused@./ in front of declaration to suppress message.+lockmarks d
Bram Moolenaar0ab2a882009-05-13 10:51:08 +000032endfun