There is no such thing as has('iconv/dyn').

This commit is contained in:
LCD 47 2015-07-16 15:12:12 +03:00
parent d353962861
commit 1dde81a68f
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ endfunction " }}}2
function! syntastic#preprocess#iconv(errors) abort " {{{2 function! syntastic#preprocess#iconv(errors) abort " {{{2
return return
\ (has('iconv') || has('iconv/dyn')) && &encoding !=# '' && &encoding !=# 'utf-8' ? \ has('iconv') && &encoding !=# '' && &encoding !=# 'utf-8' ?
\ map(a:errors, 'iconv(v:val, "utf-8", &encoding)') : \ map(a:errors, 'iconv(v:val, "utf-8", &encoding)') :
\ a:errors \ a:errors
endfunction " }}}2 endfunction " }}}2

View File

@ -19,7 +19,7 @@ if has('reltime')
lockvar! g:_SYNTASTIC_START lockvar! g:_SYNTASTIC_START
endif endif
let g:_SYNTASTIC_VERSION = '3.6.0-127' let g:_SYNTASTIC_VERSION = '3.6.0-128'
lockvar g:_SYNTASTIC_VERSION lockvar g:_SYNTASTIC_VERSION
" Sanity checks {{{1 " Sanity checks {{{1