Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
/dev/null should work under win32unix.
Browse files Browse the repository at this point in the history
  • Loading branch information
lcd047 committed Nov 30, 2015
1 parent dc516ef commit 6379bd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autoload/syntastic/c.vim
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion plugin/syntastic.vim
Expand Up @@ -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
Expand Down

0 comments on commit 6379bd1

Please sign in to comment.