updated for version 7.3.423
Problem: Small mistakes in comments, proto and indent.
Solution: Fix the mistakes.
Also update runtime files
diff --git a/runtime/syntax/viminfo.vim b/runtime/syntax/viminfo.vim
index d174edf..7af3b89 100644
--- a/runtime/syntax/viminfo.vim
+++ b/runtime/syntax/viminfo.vim
@@ -1,13 +1,16 @@
" Vim syntax file
" Language: Vim .viminfo file
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2005 Jun 20
+" Last Change: 2012 Feb 03
" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
finish
endif
+let s:cpo_save = &cpo
+set cpo&vim
+
" The lines that are NOT recognized
syn match viminfoError "^[^\t].*"
@@ -35,4 +38,7 @@
let b:current_syntax = "viminfo"
+let &cpo = s:cpo_save
+unlet s:cpo_save
+
" vim: ts=8 sw=2