summaryrefslogtreecommitdiff
path: root/runtime/ftplugin
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-21 22:05:20 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-21 22:05:20 +0200
commite06c188bbf2ff5732cd9eecbf243d37efcf7be2a (patch)
tree3ea61644737a87187261505979f8f293662e69bb /runtime/ftplugin
parentcdda8fe1c6ff147b3c1f4408884ab4905aeb4e06 (diff)
downloadvim-git-e06c188bbf2ff5732cd9eecbf243d37efcf7be2a.tar.gz
Make it possible to load Perl dynamically on Unix. (James Vega)
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r--runtime/ftplugin/debchangelog.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/ftplugin/debchangelog.vim b/runtime/ftplugin/debchangelog.vim
index cd21e93d5..80ff8efe4 100644
--- a/runtime/ftplugin/debchangelog.vim
+++ b/runtime/ftplugin/debchangelog.vim
@@ -3,9 +3,9 @@
" Maintainer: Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org>
" Former Maintainers: Michael Piefel <piefel@informatik.hu-berlin.de>
" Stefano Zacchiroli <zack@debian.org>
-" Last Change: 2010-04-29
+" Last Change: 2010-07-11
" License: GNU GPL, version 2.0 or later
-" URL: http://hg.debian.org/hg/pkg-vim/vim/raw-file/tip/runtime/ftplugin/debchangelog.vim
+" URL: http://hg.debian.org/hg/pkg-vim/vim/file/unstable/runtime/ftplugin/debchangelog.vim
" Bug completion requires apt-listbugs installed for Debian packages or
" python-launchpadlib installed for Ubuntu packages
@@ -228,7 +228,7 @@ endfunction
augroup changelogMenu
au BufEnter * if &filetype == "debchangelog" | call <SID>MakeMenu() | endif
-au BufLeave * if &filetype == "debchangelog" | aunmenu Changelog | endif
+au BufLeave * if &filetype == "debchangelog" | silent! aunmenu Changelog | endif
augroup END
" }}}