diff runtime/ftplugin/ishd.vim @ 3526:dd6c2497c997

Fix more 'cpo' issues in runtime files.
author Bram Moolenaar <bram@vim.org>
date Fri, 18 May 2012 21:49:28 +0200
parents fca8a9b65afa
children 02939ae3aaca
line wrap: on
line diff
--- a/runtime/ftplugin/ishd.vim
+++ b/runtime/ftplugin/ishd.vim
@@ -8,6 +8,8 @@ let b:did_ftplugin = 1
 
 setlocal foldmethod=syntax
 
+" Using line continuation here.
+let s:cpo_save = &cpo
 set cpo-=C
 
 " matchit support
@@ -26,3 +28,6 @@ if has("gui_win32") && !exists("b:browse
     let b:browsefilter = "InstallShield Files (*.rul)\t*.rul\n" .
 		       \ "All Files (*.*)\t*.*\n"
 endif
+
+let &cpo = s:cpo_save
+unlet s:cpo_save