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/ftplugin/ishd.vim b/runtime/ftplugin/ishd.vim index dedb328..33ef151 100644 --- a/runtime/ftplugin/ishd.vim +++ b/runtime/ftplugin/ishd.vim
@@ -8,6 +8,8 @@ setlocal foldmethod=syntax +" Using line continuation here. +let s:cpo_save = &cpo set cpo-=C " matchit support @@ -26,3 +28,6 @@ let b:browsefilter = "InstallShield Files (*.rul)\t*.rul\n" . \ "All Files (*.*)\t*.*\n" endif + +let &cpo = s:cpo_save +unlet s:cpo_save