diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-08-06 17:06:04 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-08-06 17:06:04 +0000 |
commit | e37d50a5def1c0ff162392cd3f017059c458650c (patch) | |
tree | e7d1e2b17976b130d1283d33b091baf30cfc5d2c /runtime/ftplugin/bdf.vim | |
parent | da40c8536c2b7bdbd1d192ee1aa3045e2119675e (diff) | |
download | vim-e37d50a5def1c0ff162392cd3f017059c458650c.zip |
updated for version 7.2c-000
Diffstat (limited to 'runtime/ftplugin/bdf.vim')
-rw-r--r-- | runtime/ftplugin/bdf.vim | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/runtime/ftplugin/bdf.vim b/runtime/ftplugin/bdf.vim index a010c2c5a..120c5df96 100644 --- a/runtime/ftplugin/bdf.vim +++ b/runtime/ftplugin/bdf.vim @@ -1,14 +1,20 @@ " Vim filetype plugin file " Language: BDF font definition " Maintainer: Nikolai Weibull <now@bitwi.se> -" Latest Revision: 2006-04-19 +" Latest Revision: 2008-07-09 if exists("b:did_ftplugin") finish endif let b:did_ftplugin = 1 +let s:cpo_save = &cpo +set cpo&vim + let b:undo_ftplugin = "setl com< cms< fo<" setlocal comments=b:COMMENT commentstring=COMMENT\ %s setlocal formatoptions-=t formatoptions+=croql + +let &cpo = s:cpo_save +unlet s:cpo_save |