Expand b:syntastic_<checker>_exec.

This commit is contained in:
LCD 47 2014-09-24 11:18:55 +03:00
parent b639b007ae
commit dc4f036a6e
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ if has('reltime')
lockvar! g:syntastic_start
endif
let g:syntastic_version = '3.5.0-29'
let g:syntastic_version = '3.5.0-30'
lockvar g:syntastic_version
" Sanity checks {{{1

View File

@ -47,8 +47,8 @@ endfunction " }}}2
function! g:SyntasticChecker.getExec() " {{{2
return
\ exists('b:syntastic_' . self._name . '_exec') ? b:syntastic_{self._name}_exec :
\ expand(syntastic#util#var(self._filetype . '_' . self._name . '_exec', self._exec))
\ expand( exists('b:syntastic_' . self._name . '_exec') ? b:syntastic_{self._name}_exec :
\ syntastic#util#var(self._filetype . '_' . self._name . '_exec', self._exec) )
endfunction " }}}2
function! g:SyntasticChecker.getExecEscaped() " {{{2