From 70c723ac16fee7b4093d3d16a90544d877dea89e Mon Sep 17 00:00:00 2001 From: LCD 47 Date: Mon, 30 Nov 2015 06:41:50 +0200 Subject: [PATCH] Back off 6379bd1, this is not safe. --- 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 daa9c2aa..e49a29a0 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') || has('win32unix') || syntastic#util#isRunningWindows() + let known_os = has('unix') || has('mac') || syntastic#util#isRunningWindows() return known_os ? '-o ' . syntastic#util#DevNull() : '' endfunction " }}}2 diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index 9d1b6b52..c689b7d2 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-46' +let g:_SYNTASTIC_VERSION = '3.7.0-47' lockvar g:_SYNTASTIC_VERSION " Sanity checks {{{1