summaryrefslogtreecommitdiff
path: root/runtime/autoload/xmlcomplete.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-06-29 23:05:20 +0200
committerBram Moolenaar <Bram@vim.org>2013-06-29 23:05:20 +0200
commit14b6945e27ca175a42550a6a887874303313c19e (patch)
tree5f1d7c2d0c312149824e980142ebe698ffaee166 /runtime/autoload/xmlcomplete.vim
parent10315b1201716a10d39477fc09e3eb89e944191f (diff)
downloadvim-git-14b6945e27ca175a42550a6a887874303313c19e.tar.gz
Updated runtime files.
Diffstat (limited to 'runtime/autoload/xmlcomplete.vim')
-rw-r--r--runtime/autoload/xmlcomplete.vim8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/autoload/xmlcomplete.vim b/runtime/autoload/xmlcomplete.vim
index 37f9bb413..4c1ac4f6b 100644
--- a/runtime/autoload/xmlcomplete.vim
+++ b/runtime/autoload/xmlcomplete.vim
@@ -1,7 +1,7 @@
" Vim completion script
" Language: XML
" Maintainer: Mikolaj Machowski ( mikmach AT wp DOT pl )
-" Last Change: 2006 Aug 15
+" Last Change: 2013 Jun 29
" Version: 1.9
"
" Changelog:
@@ -475,12 +475,12 @@ function! s:InCommentAt(line, col)
endfunction
function! s:SetKeywords()
- let g:IsKeywordBak=&iskeyword
- let &iskeyword='33-255'
+ let s:IsKeywordBak=&l:iskeyword
+ let &l:iskeyword='33-255'
endfunction
function! s:RestoreKeywords()
- let &iskeyword=g:IsKeywordBak
+ let &l:iskeyword=s:IsKeywordBak
endfunction
function! s:Push(el, sname)