In ftplugin/changelog.vim is a small copy/paste error, that leads to
an undefined variable.
Changing the following lines solves the problem:
@@ -131,7 +131,7 @@
" Regular expression used to find the end of a date entry
if !exists('g:changelog_date_end_entry_search')
- let g:changelog_date_entry_search = '^\s*$'
+ let g:changelog_date_end_entry_search = '^\s*$'
endif
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---