From f6d584bc639c2b799d5d7897d1e681b4e57cd476 Mon Sep 17 00:00:00 2001 From: LCD 47 Date: Sun, 23 Mar 2014 06:25:59 +0200 Subject: [PATCH] splint: add errorformat sequences for Windows. --- plugin/syntastic.vim | 2 +- syntax_checkers/c/splint.vim | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index a6e4eead..28599042 100644 --- a/plugin/syntastic.vim +++ b/plugin/syntastic.vim @@ -18,7 +18,7 @@ if has('reltime') let g:syntastic_start = reltime() endif -let g:syntastic_version = '3.4.0-6' +let g:syntastic_version = '3.4.0-7' " Sanity checks {{{1 diff --git a/syntax_checkers/c/splint.vim b/syntax_checkers/c/splint.vim index 991a681b..f56af1ae 100644 --- a/syntax_checkers/c/splint.vim +++ b/syntax_checkers/c/splint.vim @@ -35,8 +35,11 @@ function! SyntaxCheckers_c_splint_GetLocList() dict let errorformat = \ '%-G%f:%l:%v: %[%#]%[%#]%[%#] Internal Bug %.%#,' . + \ '%-G%f(%l\,%v): %[%#]%[%#]%[%#] Internal Bug %.%#,' . \ '%W%f:%l:%v: %m,' . + \ '%W%f(%l\,%v): %m,' . \ '%W%f:%l: %m,' . + \ '%W%f(%l): %m,' . \ '%-C %\+In file included from %.%#,' . \ '%-C %\+from %.%#,' . \ '%+C %.%#'