refactored a variable name

This commit is contained in:
marty 2008-02-06 20:11:17 +13:00
parent 08d14e7342
commit d1af8af555

View File

@ -1440,7 +1440,7 @@ endfunction
" 'nested', 'toEOL', 'prepend', 'append', 'insert', 'uncomment', 'yank'
function! NERDComment(isVisual, type) range
" we want case sensitivity when commenting
let prevIgnoreCase = &ignorecase
let oldIgnoreCase = &ignorecase
set noignorecase
if a:isVisual
@ -1529,7 +1529,7 @@ function! NERDComment(isVisual, type) range
execute firstLine .','. lastLine .'call NERDComment('. a:isVisual .', "norm")'
endif
let &ignorecase = prevIgnoreCase
let &ignorecase = oldIgnoreCase
endfunction
" Function: s:PlaceDelimitersAndInsBetween() function {{{2