diff options
Diffstat (limited to 'runtime/syntax/smil.vim')
-rw-r--r-- | runtime/syntax/smil.vim | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/syntax/smil.vim b/runtime/syntax/smil.vim index 0b53d8ec3..6b5a00286 100644 --- a/runtime/syntax/smil.vim +++ b/runtime/syntax/smil.vim @@ -2,7 +2,7 @@ " Language: SMIL (Synchronized Multimedia Integration Language) " Maintainer: Herve Foucher <Herve.Foucher@helio.org> " URL: http://www.helio.org/vim/syntax/smil.vim -" Last Change: 2003 May 11 +" Last Change: 2012 Feb 03 by Thilo Six " To learn more about SMIL, please refer to http://www.w3.org/AudioVideo/ " and to http://www.helio.org/products/smil/tutorial/ @@ -15,6 +15,9 @@ elseif exists("b:current_syntax") finish endif +let s:cpo_save = &cpo +set cpo&vim + " SMIL is case sensitive syn case match @@ -151,4 +154,6 @@ if main_syntax == 'smil' unlet main_syntax endif +let &cpo = s:cpo_save +unlet s:cpo_save " vim: ts=8 |