comparison 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
comparison
equal deleted inserted replaced
3525:b1f40dd6f844 3526:dd6c2497c997
6 if exists("b:did_ftplugin") | finish | endif 6 if exists("b:did_ftplugin") | finish | endif
7 let b:did_ftplugin = 1 7 let b:did_ftplugin = 1
8 8
9 setlocal foldmethod=syntax 9 setlocal foldmethod=syntax
10 10
11 " Using line continuation here.
12 let s:cpo_save = &cpo
11 set cpo-=C 13 set cpo-=C
12 14
13 " matchit support 15 " matchit support
14 if exists("loaded_matchit") 16 if exists("loaded_matchit")
15 let b:match_ignorecase=0 17 let b:match_ignorecase=0
24 26
25 if has("gui_win32") && !exists("b:browsefilter") 27 if has("gui_win32") && !exists("b:browsefilter")
26 let b:browsefilter = "InstallShield Files (*.rul)\t*.rul\n" . 28 let b:browsefilter = "InstallShield Files (*.rul)\t*.rul\n" .
27 \ "All Files (*.*)\t*.*\n" 29 \ "All Files (*.*)\t*.*\n"
28 endif 30 endif
31
32 let &cpo = s:cpo_save
33 unlet s:cpo_save