comparison src/cleanlint.vim @ 1872:f13849167330 v7.2.169

updated for version 7.2-169
author vimboss
date Wed, 13 May 2009 16:56:33 +0000
parents 720a59d79bcd
children
comparison
equal deleted inserted replaced
1871:ad41c6afaa7b 1872:f13849167330
1 " Vim tool: Filter output of splint 1 " Vim tool: Filter output of splint
2 " 2 "
3 " Maintainer: Bram Moolenaar <Bram@vim.org> 3 " Maintainer: Bram Moolenaar <Bram@vim.org>
4 " Last Change: 2009 May 05 4 " Last Change: 2009 May 13
5 5
6 " Usage: redirect output of "make lint" to a file, edit that file with Vim and 6 " Usage: redirect output of "make lint" to a file, edit that file with Vim and
7 " :call CleanLint() 7 " :call CleanLint()
8 " This deletes irrelevant messages. What remains might be valid warnings. 8 " This deletes irrelevant messages. What remains might be valid warnings.
9 9
10 fun! CleanLint() 10 fun! CleanLint()
11 g/^ Types are incompatible/lockmarks d
12 g/Assignment of dev_t to __dev_t:/lockmarks d 11 g/Assignment of dev_t to __dev_t:/lockmarks d
13 g/Assignment of __dev_t to dev_t:/lockmarks d 12 g/Assignment of __dev_t to dev_t:/lockmarks d
14 g/Operands of == have incompatible types (__dev_t, dev_t): /lockmarks d 13 g/Operands of == have incompatible types (__dev_t, dev_t): /lockmarks d
15 g/Operands of == have incompatible types (unsigned int, int): /lockmarks d 14 g/Operands of == have incompatible types (char_u, int): /lockmarks d
16 g/Assignment of char to char_u: /lockmarks d 15 g/Assignment of char to char_u: /lockmarks d
17 g/Assignment of unsigned int to int: /lockmarks d 16 g/Assignment of unsigned int to int: /lockmarks d
18 g/Assignment of colnr_T 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 19 g/Assignment of int to char_u: /lockmarks d
20 g/Function .* expects arg . to be wint_t gets int: /lockmarks d 20 g/Function .* expects arg . to be wint_t gets int: /lockmarks d
21 g/^digraph.c.*digraphdefault.*is type char, expects char_u:/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
22 g/^digraph.c.*Additional initialization errors for digraphdefault not reported/lockmarks d 25 g/^digraph.c.*Additional initialization errors for digraphdefault not reported/lockmarks d
23 g/Function strncasecmp expects arg 3 to be int gets size_t: /lockmarks d 26 g/Function strncasecmp expects arg 3 to be int gets size_t: /lockmarks d
27 g/^ Types are incompatible/lockmarks d
24 g/ To ignore signs in type comparisons use +ignoresigns/lockmarks d 28 g/ To ignore signs in type comparisons use +ignoresigns/lockmarks d
25 g/ To allow arbitrary integral types to match any integral type, use +matchanyintegral./lockmarks d 29 g/ To allow arbitrary integral types to match any integral type, use +matchanyintegral./lockmarks d
26 g/ To allow arbitrary integral types to match long unsigned, use +longintegral./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
27 endfun 32 endfun