diff options
author | Jim Ramsay <lack@gentoo.org> | 2009-10-14 01:29:49 +0000 |
---|---|---|
committer | Jim Ramsay <lack@gentoo.org> | 2009-10-14 01:29:49 +0000 |
commit | 359a478109abca9d61a0211e8e6e95cefa0fc77b (patch) | |
tree | c4879bfca724b5e72dc5b8fe732757aa21dc065c /eclass/vim.eclass | |
parent | Update debug test patch to cover USE=idn #288156 by Paolo Pedroni and info fr... (diff) | |
download | historical-359a478109abca9d61a0211e8e6e95cefa0fc77b.tar.gz historical-359a478109abca9d61a0211e8e6e95cefa0fc77b.tar.bz2 historical-359a478109abca9d61a0211e8e6e95cefa0fc77b.zip |
The bashcomp message for vim-core should mention 'xxd' not 'vim-core'
Fixes bug #278056
Diffstat (limited to 'eclass/vim.eclass')
-rw-r--r-- | eclass/vim.eclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass index 82e1e2779576..eca5e1074c27 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -1,8 +1,9 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.175 2009/10/11 11:49:42 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.176 2009/10/14 01:29:49 lack Exp $ # Authors: +# Jim Ramsay <i.am@gentoo.org> # Ryan Phillips <rphillips@gentoo.org> # Seemant Kulleen <seemant@gentoo.org> # Aron Griffis <agriffis@gentoo.org> @@ -754,6 +755,9 @@ vim_pkg_postinst() { echo if version_is_at_least 6.3.1 ; then + if [[ ${MY_PN} == "vim-core" ]] ; then + export BASH_COMPLETION_NAME="xxd" + fi bash-completion_pkg_postinst fi |