summaryrefslogtreecommitdiffstats
path: root/runtime/syntax/natural.vim
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/syntax/natural.vim')
-rw-r--r--runtime/syntax/natural.vim12
1 files changed, 9 insertions, 3 deletions
diff --git a/runtime/syntax/natural.vim b/runtime/syntax/natural.vim
index 2628151378..4fbc916be2 100644
--- a/runtime/syntax/natural.vim
+++ b/runtime/syntax/natural.vim
@@ -1,9 +1,9 @@
" Vim syntax file
"
" Language: NATURAL
-" Version: 2.1.0.3
+" Version: 2.1.0.5
" Maintainer: Marko von Oppen <marko@von-oppen.com>
-" Last Changed: 2008-07-29 01:40:52
+" Last Changed: 2012-02-05 18:50:43
" Support: http://www.von-oppen.com/
" For version 5.x: Clear all syntax items
@@ -17,6 +17,9 @@ else
setlocal iskeyword+=-,*,#,+,_,/
endif
+let s:cpo_save = &cpo
+set cpo&vim
+
" NATURAL is case insensitive
syntax case ignore
@@ -206,4 +209,7 @@ endif
let b:current_syntax = "natural"
-" vim:set ts=8 sw=8 noet ft=vim:
+let &cpo = s:cpo_save
+unlet s:cpo_save
+
+" vim:set ts=8 sw=8 noet ft=vim list: