commit | 9a7224b5a0639c26c843c10afcafa5bf149271fd | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Apr 30 15:56:52 2012 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Apr 30 15:56:52 2012 +0200 |
tree | 9cafda4f3dd87f3ba177401248d65aa241f63ced | |
parent | e8938e507e5dbeea25accd3586cd9aca13e5bf64 [diff] [blame] |
Fixed compatible mode in most runtime files.
diff --git a/runtime/syntax/cmake.vim b/runtime/syntax/cmake.vim index d6e8cb4..e241605e 100644 --- a/runtime/syntax/cmake.vim +++ b/runtime/syntax/cmake.vim
@@ -18,6 +18,8 @@ elseif exists("b:current_syntax") finish endif +let s:keepcpo= &cpo +set cpo&vim syn case ignore syn match cmakeEscaped /\(\\\\\|\\"\|\\n\|\\t\)/ contained @@ -78,4 +80,7 @@ let b:current_syntax = "cmake" +let &cpo = s:keepcpo +unlet s:keepcpo + "EOF"