vim/vim-6.2-rh1.patch
cvsdist 1401a3eb97 auto-import changelog data from vim-6.2.214-1.src.rpm
Thu Jan 29 2004 Karsten Hopp <karsten@redhat.de> 6.2.214-1
- Patchlevel 214
6.2.195-5
- Fix call to is_selinux_enabled()
Sat Jan 24 2004 Karsten Hopp <karsten@redhat.de> 6.2.195-4
- fix perl requirement
6.2.195-3
- Only attempt to change context if it is different
Thu Jan 22 2004 Karsten Hopp <karsten@redhat.de> 6.2.195-1
- update to patchlevel 195
- enable ppc64 build
Mon Jan 12 2004 Karsten Hopp <karsten@redhat.de> 6.2.180-2
- vim-enhanced requires perl >= 5.8.2 (#111592)
Mon Jan 12 2004 Karsten Hopp <karsten@redhat.de> 6.2.180-1
- Patchlevel 180
- update spec.vim, use g:packager instead of {Packager} macro
6.2.154-7
- Enable selinux support for vim-minimal
6.2.154-6
- Enable selinux support
6.2.154-5
- rebuild with new perl
6.2.154-4
- fix sh.vim syntax file (#104312)
6.2.154-3
- perl interface was disabled when perl had thread support.
6.2.154-2
- fix date in specfile changelog entries
6.2.154-1
- Patchlevel 154
- vim-minimal doesn't really require vim-common to run, removed dependency
    (#109819)
6.2.149-1
- Patchlevel 149
- fix fstab syntax file (Robert G. (Doc) Savage)
- lots of updates for syntax files, macros, documentation
- disable vimnotvi patch so that vim's behaviour matches documentation
- clean up vimrc
6.2.145-1
- rebuild with new Python
- Patchlevel 145
2004-09-09 14:07:26 +00:00

21 lines
791 B
Diff

--- vim62/runtime/ftplugin/spec.vim.rh1 2004-01-12 14:16:15.000000000 +0100
+++ vim62/runtime/ftplugin/spec.vim 2004-01-12 14:18:06.000000000 +0100
@@ -12,7 +12,7 @@
" Add mappings, unless user doesn't want
if !exists("no_plugin_maps") && !exists("no_spec_maps")
if !hasmapto("<Plug>AddChangelogBlock")
- map <buffer> <LocalLeader>ch <Plug>AddChangelogBlock
+ map <buffer> <LocalLeader>c <Plug>AddChangelogBlock
endif
if !hasmapto("<Plug>AddChangelogEntry")
map <buffer> <LocalLeader>CH <Plug>AddChangelogEntry
@@ -62,7 +62,7 @@
" insert changelog header
call append(a:line,
\ "* " . strftime("%a %b %d %Y") .
- \ " " . <SID>GetTagValue("Packager") .
+ \ " " . g:packager .
\ " " . <SID>GetTagValue("Version") .
\ "-" . <SID>GetTagValue("Release")
\)