Fix args in actionscript/mxmlc checker

This commit is contained in:
Andy Earnshaw 2013-12-30 16:55:02 +00:00
parent edcb2f2baf
commit 3191a3c193

View File

@ -47,8 +47,8 @@ endfunction
function! SyntaxCheckers_actionscript_mxmlc_GetLocList() dict function! SyntaxCheckers_actionscript_mxmlc_GetLocList() dict
let makeprg = self.makeprgBuild({ let makeprg = self.makeprgBuild({
\ 'args': '-output=' . syntastic#util#DevNull() . \ 'args': '-output=' . syntastic#util#DevNull() .
\ !empty(g:syntastic_actionscript_mxmlc_conf) ? \ (!empty(g:syntastic_actionscript_mxmlc_conf) ?
\ ' -load-config+=' . g:syntastic_actionscript_mxmlc_conf : '' }) \ ' -load-config+=' . g:syntastic_actionscript_mxmlc_conf : '') })
let errorformat = let errorformat =
\ '%f(%l): col: %c %trror: %m,' . \ '%f(%l): col: %c %trror: %m,' .