From dc4f036a6e7a2befab61cf867c74a720e9dfc777 Mon Sep 17 00:00:00 2001 From: LCD 47 Date: Wed, 24 Sep 2014 11:18:55 +0300 Subject: [PATCH] Expand b:syntastic__exec. --- plugin/syntastic.vim | 2 +- plugin/syntastic/checker.vim | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index 394fb692..14bcb7a4 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.5.0-29' +let g:syntastic_version = '3.5.0-30' lockvar g:syntastic_version " Sanity checks {{{1 diff --git a/plugin/syntastic/checker.vim b/plugin/syntastic/checker.vim index 37605413..6ee8d681 100644 --- a/plugin/syntastic/checker.vim +++ b/plugin/syntastic/checker.vim @@ -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