PC-Lint: mark informational messages as "Style".

This commit is contained in:
LCD 47 2014-09-19 11:30:31 +03:00
parent 9321bc79ed
commit fa0290c556
2 changed files with 12 additions and 3 deletions

View File

@ -19,7 +19,7 @@ if has('reltime')
lockvar! g:syntastic_start
endif
let g:syntastic_version = '3.5.0-24'
let g:syntastic_version = '3.5.0-25'
lockvar g:syntastic_version
" Sanity checks {{{1

View File

@ -36,13 +36,22 @@ function! SyntaxCheckers_c_pc_lint_GetLocList() dict
let errorformat =
\ '%E%f:%l:%v:Error:%n:%m,' .
\ '%W%f:%l:%v:Warning:%n:%m,' .
\ '%W%f:%l:%v:Info:%n:%m,' .
\ '%I%f:%l:%v:Info:%n:%m,' .
\ '%-G%.%#'
return SyntasticMake({
let loclist = SyntasticMake({
\ 'makeprg': makeprg,
\ 'errorformat': errorformat,
\ 'postprocess': ['cygwinRemoveCR'] })
for e in loclist
if e['type'] ==? 'I'
let e['type'] = 'W'
let e['subtype'] = 'Style'
endif
endfor
return loclist
endfunction
call g:SyntasticRegistry.CreateAndRegisterChecker({