From fd54b6be9e1860cb868bd0436809b717f1233a20 Mon Sep 17 00:00:00 2001 From: LCD 47 Date: Sat, 3 Sep 2016 00:03:12 +0300 Subject: [PATCH] Core: workaround for lgetexpr calling QuickFixCmd* in Vim 7.4.2299. --- plugin/syntastic.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index 7ddeb6ad..365f99a5 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.7.0-211' +let g:_SYNTASTIC_VERSION = '3.7.0-212' lockvar g:_SYNTASTIC_VERSION " Sanity checks {{{1 @@ -598,7 +598,7 @@ function! SyntasticMake(options) abort " {{{2 let err_lines = call('syntastic#preprocess#' . a:options['preprocess'], [err_lines]) call syntastic#log#debug(g:_SYNTASTIC_DEBUG_LOCLIST, 'preprocess:', err_lines) endif - lgetexpr err_lines + noautocmd lgetexpr err_lines let errors = deepcopy(getloclist(0))