diff options
author | Ciaran McCreesh <ciaranm@gentoo.org> | 2004-09-05 00:22:54 +0000 |
---|---|---|
committer | Ciaran McCreesh <ciaranm@gentoo.org> | 2004-09-05 00:22:54 +0000 |
commit | 8fafb6390a56d979681123b6bfc7b9e75d4d12dc (patch) | |
tree | 5473f1c0cf797999e9ba0d074d3670bd47bdee4d | |
parent | fix h0rked VIM_PLUGIN_HELP stuff (Manifest recommit) (diff) | |
download | gentoo-2-8fafb6390a56d979681123b6bfc7b9e75d4d12dc.tar.gz gentoo-2-8fafb6390a56d979681123b6bfc7b9e75d4d12dc.tar.bz2 gentoo-2-8fafb6390a56d979681123b6bfc7b9e75d4d12dc.zip |
make whitespace work better for the help text
-rw-r--r-- | eclass/vim-plugin.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/vim-plugin.eclass b/eclass/vim-plugin.eclass index 441fa0209646..e9fe2de77a1d 100644 --- a/eclass/vim-plugin.eclass +++ b/eclass/vim-plugin.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim-plugin.eclass,v 1.6 2004/09/02 14:34:52 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim-plugin.eclass,v 1.7 2004/09/05 00:22:54 ciaranm Exp $ # # This eclass simplifies installation of app-vim plugins into # /usr/share/vim/vimfiles. This is a version-independent directory @@ -109,7 +109,7 @@ display_vim_plugin_help() { elif [[ -n "${VIM_PLUGIN_HELPTEXT}" ]] ; then einfo " " while read h ; do - einfo $h + einfo "$h" done <<<"${VIM_PLUGIN_HELPTEXT}" einfo " " |