From a2281bd121949f2215ee9257e28e2c0966f3f003 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 12 Nov 2017 16:38:09 +1300 Subject: Add guards for presence of b:undo_* var This variable is not set in older Vims (early 6.x), and I think it's worth guarding for. --- vim/after/ftplugin/perl/check.vim | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'vim/after/ftplugin/perl/check.vim') diff --git a/vim/after/ftplugin/perl/check.vim b/vim/after/ftplugin/perl/check.vim index 24a174ff..6b057c82 100644 --- a/vim/after/ftplugin/perl/check.vim +++ b/vim/after/ftplugin/perl/check.vim @@ -4,8 +4,10 @@ if exists('b:did_ftplugin_perl_check') || &compatible finish endif let b:did_ftplugin_perl_check = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_perl_check' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_perl_check' +endif " Set up a mapping for the checker, if we're allowed if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') @@ -14,16 +16,20 @@ if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') nnoremap \ PerlCheck \ :write !perl -c - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap PerlCheck' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap PerlCheck' + endif " If there isn't a key mapping already, use a default one if !hasmapto('PerlCheck') nmap \ c \ PerlCheck - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap c' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap c' + endif endif endif -- cgit v1.2.3