This commit is contained in:
LCD 47 2016-09-01 14:13:35 +03:00
parent 287aeeb925
commit 6ae595b108
2 changed files with 2 additions and 2 deletions

View File

@ -278,7 +278,7 @@ function! syntastic#util#fname2buf(fname) abort " {{{2
if exists('+shellslash')
let old_shellslash = &shellslash
let &shellslash = 1
let buf = bufnr(escape( fnamemodify(a:fname, ':p'), '\*?,{[' ))
let buf = bufnr(escape( fnamemodify(a:fname, ':p'), '\*?,{}[' ))
let &shellslash = old_shellslash
else
let buf = bufnr(escape( fnamemodify(a:fname, ':p'), '\*?,{}[' ))

View File

@ -19,7 +19,7 @@ if has('reltime')
lockvar! g:_SYNTASTIC_START
endif
let g:_SYNTASTIC_VERSION = '3.7.0-205'
let g:_SYNTASTIC_VERSION = '3.7.0-206'
lockvar g:_SYNTASTIC_VERSION
" Sanity checks {{{1