From 9b45d5c4b46031c29a31ba72fbf1dcb6f0db6d5f Mon Sep 17 00:00:00 2001 From: LCD 47 Date: Wed, 19 Oct 2016 08:43:03 +0300 Subject: [PATCH] Typo. --- plugin/syntastic.vim | 2 +- plugin/syntastic/registry.vim | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index cdcceca6..944dfb8b 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-242' +let g:_SYNTASTIC_VERSION = '3.7.0-243' lockvar g:_SYNTASTIC_VERSION " Sanity checks {{{1 diff --git a/plugin/syntastic/registry.vim b/plugin/syntastic/registry.vim index 62a5b502..69ef5817 100644 --- a/plugin/syntastic/registry.vim +++ b/plugin/syntastic/registry.vim @@ -294,7 +294,7 @@ function! g:SyntasticRegistry.echoInfoFor(ftalias_list) abort " {{{2 let cnt = len(disabled) let plural = cnt != 1 ? 's' : '' if len(disabled) - let cklist = join(sort(disabled, 's:_compare_filetypes')) + let cklist = join(sort(disabled, 's:_compare_checker_names')) echomsg 'Checker' . plural . ' disabled for security reasons: ' . cklist endif @@ -414,7 +414,7 @@ function! s:_disabled_by_ycm(filetype) abort " {{{2 return index(s:_YCM_TYPES, a:filetype) >= 0 endfunction " }}}2 -function! s:_compare_filetypes(a, b) abort " {{{2 +function! s:_compare_checker_names(a, b) abort " {{{2 if a:a ==# a:b return 0 endif