Merge pull request #921 from andyearnshaw/actionscript-mxmlc

Fix args in actionscript/mxmlc checker
This commit is contained in:
LCD 047 2014-01-02 22:23:40 -08:00
commit 87ca881688

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,' .