diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-02-04 21:59:01 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-02-04 21:59:01 +0100 |
commit | b8ff1fb5eb60511f21c425e09c473105ffff02cb (patch) | |
tree | 5af8b9f0ccc3a2147ef884c4d8d9f7149833bbe8 /runtime/syntax/monk.vim | |
parent | 7f85d297dc80666946f7940bc06e45cc2aa79b5d (diff) | |
download | vim-git-b8ff1fb5eb60511f21c425e09c473105ffff02cb.tar.gz |
updated for version 7.3.423v7.3.423
Problem: Small mistakes in comments, proto and indent.
Solution: Fix the mistakes.
Also update runtime files
Diffstat (limited to 'runtime/syntax/monk.vim')
-rw-r--r-- | runtime/syntax/monk.vim | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/runtime/syntax/monk.vim b/runtime/syntax/monk.vim index 560b79c67..afe2b5619 100644 --- a/runtime/syntax/monk.vim +++ b/runtime/syntax/monk.vim @@ -1,7 +1,7 @@ " Vim syntax file " Language: Monk (See-Beyond Technologies) " Maintainer: Mike Litherland <litherm@ccf.org> -" Last Change: March 6, 2002 +" Last Change: 2012 Feb 03 by Thilo Six " This syntax file is good enough for my needs, but others " may desire more features. Suggestions and bug reports @@ -29,6 +29,9 @@ elseif exists("b:current_syntax") finish endif +let s:cpo_save = &cpo +set cpo&vim + syn case ignore " Fascist highlighting: everything that doesn't fit the rules is an error... @@ -226,3 +229,6 @@ if version >= 508 || !exists("did_monk_syntax_inits") endif let b:current_syntax = "monk" + +let &cpo = s:cpo_save +unlet s:cpo_save |