Bram Moolenaar | 0ab2a88 | 2009-05-13 10:51:08 +0000 | [diff] [blame] | 1 | " Vim tool: Filter output of splint |
| 2 | " |
| 3 | " Maintainer: Bram Moolenaar <Bram@vim.org> |
| 4 | " Last Change: 2009 May 05 |
| 5 | |
| 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 | |
| 10 | fun! CleanLint() |
| 11 | g/^ Types are incompatible/lockmarks d |
| 12 | g/Assignment of dev_t to __dev_t:/lockmarks d |
| 13 | g/Assignment of __dev_t to dev_t:/lockmarks d |
| 14 | g/Operands of == have incompatible types (__dev_t, dev_t): /lockmarks d |
| 15 | g/Operands of == have incompatible types (unsigned int, int): /lockmarks d |
| 16 | g/Assignment of char to char_u: /lockmarks d |
| 17 | g/Assignment of unsigned int to int: /lockmarks d |
| 18 | g/Assignment of colnr_T to 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/^digraph.c.*digraphdefault.*is type char, expects char_u:/lockmarks d |
| 22 | 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 |
| 24 | 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 |
| 26 | g/ To allow arbitrary integral types to match long unsigned, use +longintegral./lockmarks d |
| 27 | endfun |