diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-12-30 13:11:27 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-12-30 13:11:27 +0100 |
commit | b6b046b281fac168a78b3eafdea9274bef06882f (patch) | |
tree | 8d50c58421278f30521e290a8cf18c6085b78168 /runtime/syntax/art.vim | |
parent | deaf7b739791095e2c98a7087dfe9b3c8dfd56f2 (diff) | |
download | vim-b6b046b281fac168a78b3eafdea9274bef06882f.zip |
Updated runtime files.
Diffstat (limited to 'runtime/syntax/art.vim')
-rw-r--r-- | runtime/syntax/art.vim | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/runtime/syntax/art.vim b/runtime/syntax/art.vim index c1faddb1e..855119810 100644 --- a/runtime/syntax/art.vim +++ b/runtime/syntax/art.vim @@ -2,12 +2,15 @@ " Language: ART-IM and ART*Enterprise " Maintainer: Dorai Sitaram <ds26@gte.com> " URL: http://www.ccs.neu.edu/~dorai/vimplugins/vimplugins.html -" Last Change: Nov 6, 2002 +" Last Change: 2011 Dec 28 by Thilo Six if exists("b:current_syntax") finish endif +let s:cpo_save = &cpo +set cpo&vim + syn case ignore syn keyword artspform => and assert bind @@ -42,3 +45,6 @@ hi def link artspform statement hi def link artvariable function let b:current_syntax = "art" + +let &cpo = s:cpo_save +unlet s:cpo_save |