Back off 6379bd1, this is not safe.

This commit is contained in:
LCD 47 2015-11-30 06:41:50 +02:00
parent 6379bd1988
commit 70c723ac16
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ set cpo&vim
" convenience function to determine the 'null device' parameter
" based on the current operating system
function! syntastic#c#NullOutput() abort " {{{2
let known_os = has('unix') || has('mac') || has('win32unix') || syntastic#util#isRunningWindows()
let known_os = has('unix') || has('mac') || syntastic#util#isRunningWindows()
return known_os ? '-o ' . syntastic#util#DevNull() : ''
endfunction " }}}2

View File

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