Updated runtime files.
diff --git a/runtime/indent/vim.vim b/runtime/indent/vim.vim
index 8281d94..a17bae1 100644
--- a/runtime/indent/vim.vim
+++ b/runtime/indent/vim.vim
@@ -1,7 +1,7 @@
" Vim indent file
" Language: Vim script
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2012 May 18
+" Last Change: 2012 May 20
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
@@ -12,6 +12,8 @@
setlocal indentexpr=GetVimIndent()
setlocal indentkeys+==end,=else,=cat,=fina,=END,0\\
+let b:undo_indent = "setl indentkeys< indentexpr<"
+
" Only define the function once.
if exists("*GetVimIndent")
finish
@@ -54,7 +56,7 @@
if i >= 0
let ind += &sw
if strpart(line, i, 1) == '|' && has('syntax_items')
- \ && synIDattr(synID(lnum, i, 1), "name") =~ '\(Comment\|String\)$'
+ \ && synIDattr(synID(lnum, i, 1), "name") =~ '\(Comment\|String\)$'
let ind -= &sw
endif
endif