commit | 8e52a593765172de0f4d98a849d6d89d024b971e | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri May 18 21:49:28 2012 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Fri May 18 21:49:28 2012 +0200 |
tree | 835eaca57a3432e958820b1a994ffa410dd24572 | |
parent | bd1d5608952dd1c61f99f9b2f605610405415622 [diff] [blame] |
Fix more 'cpo' issues in runtime files.
diff --git a/runtime/indent/occam.vim b/runtime/indent/occam.vim index ba978e0..bebb052 100644 --- a/runtime/indent/occam.vim +++ b/runtime/indent/occam.vim
@@ -20,6 +20,8 @@ if exists("*GetOccamIndent") finish endif +let s:keepcpo= &cpo +set cpo&vim "{{{ Indent definitions " Define carriage return indent @@ -180,3 +182,6 @@ endfunction "}}} + +let &cpo = s:keepcpo +unlet s:keepcpo