From 6379bd19882e671d581ade943644cb9ed55b3e5c Mon Sep 17 00:00:00 2001 From: LCD 47 Date: Mon, 30 Nov 2015 06:37:51 +0200 Subject: [PATCH] /dev/null should work under win32unix. --- autoload/syntastic/c.vim | 2 +- plugin/syntastic.vim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/syntastic/c.vim b/autoload/syntastic/c.vim index e49a29a0b..daa9c2aa8 100644 --- a/autoload/syntastic/c.vim +++ b/autoload/syntastic/c.vim @@ -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') || syntastic#util#isRunningWindows() + let known_os = has('unix') || has('mac') || has('win32unix') || syntastic#util#isRunningWindows() return known_os ? '-o ' . syntastic#util#DevNull() : '' endfunction " }}}2 diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index 8046c0cee..9d1b6b526 100644 --- a/plugin/syntastic.vim +++ b/plugin/syntastic.vim @@ -19,7 +19,7 @@ if has('reltime') lockvar! g:_SYNTASTIC_START endif -let g:_SYNTASTIC_VERSION = '3.7.0-45' +let g:_SYNTASTIC_VERSION = '3.7.0-46' lockvar g:_SYNTASTIC_VERSION " Sanity checks {{{1