From 008ac98299bb4fcd3fc4dedcd5f99dc04ff15095 Mon Sep 17 00:00:00 2001 From: LCD 47 Date: Thu, 9 Oct 2014 22:41:51 +0300 Subject: [PATCH] Workaround for Vim changing the semantics of lockvar. --- plugin/syntastic.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index 5f325dfd..61b3f8b0 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-64' +let g:syntastic_version = '3.5.0-65' lockvar g:syntastic_version " Sanity checks {{{1 @@ -90,7 +90,7 @@ lockvar! g:syntastic_defaults for s:key in keys(g:syntastic_defaults) if !exists('g:syntastic_' . s:key) - let g:syntastic_{s:key} = g:syntastic_defaults[s:key] + let g:syntastic_{s:key} = copy(g:syntastic_defaults[s:key]) endif endfor