Stop clobbering global options.
This commit is contained in:
parent
8d6fe0d6c2
commit
4611645c18
@ -529,10 +529,10 @@ endfunction
|
|||||||
" 'subtype' - all errors will be assigned the given subtype
|
" 'subtype' - all errors will be assigned the given subtype
|
||||||
function! SyntasticMake(options)
|
function! SyntasticMake(options)
|
||||||
let old_loclist = getloclist(0)
|
let old_loclist = getloclist(0)
|
||||||
let old_makeprg = &makeprg
|
let old_makeprg = &l:makeprg
|
||||||
let old_shellpipe = &shellpipe
|
let old_shellpipe = &shellpipe
|
||||||
let old_shell = &shell
|
let old_shell = &shell
|
||||||
let old_errorformat = &errorformat
|
let old_errorformat = &l:errorformat
|
||||||
|
|
||||||
if !s:running_windows && (s:uname !~ "FreeBSD")
|
if !s:running_windows && (s:uname !~ "FreeBSD")
|
||||||
"this is a hack to stop the screen needing to be ':redraw'n when
|
"this is a hack to stop the screen needing to be ':redraw'n when
|
||||||
@ -542,19 +542,19 @@ function! SyntasticMake(options)
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
if has_key(a:options, 'makeprg')
|
if has_key(a:options, 'makeprg')
|
||||||
let &makeprg = a:options['makeprg']
|
let &l:makeprg = a:options['makeprg']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if has_key(a:options, 'errorformat')
|
if has_key(a:options, 'errorformat')
|
||||||
let &errorformat = a:options['errorformat']
|
let &l:errorformat = a:options['errorformat']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
silent lmake!
|
silent lmake!
|
||||||
let errors = getloclist(0)
|
let errors = getloclist(0)
|
||||||
|
|
||||||
call setloclist(0, old_loclist)
|
call setloclist(0, old_loclist)
|
||||||
let &makeprg = old_makeprg
|
let &l:makeprg = old_makeprg
|
||||||
let &errorformat = old_errorformat
|
let &l:errorformat = old_errorformat
|
||||||
let &shellpipe=old_shellpipe
|
let &shellpipe=old_shellpipe
|
||||||
let &shell=old_shell
|
let &shell=old_shell
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user