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 | 7e90e74fdc095104714772e7a6983e5454813c1b (patch) | |
tree | 5c1c2166347199527e98f208fe304bc1229527d9 /eclass/vim-plugin.eclass | |
parent | fix h0rked VIM_PLUGIN_HELP stuff (diff) | |
download | historical-7e90e74fdc095104714772e7a6983e5454813c1b.tar.gz historical-7e90e74fdc095104714772e7a6983e5454813c1b.tar.bz2 historical-7e90e74fdc095104714772e7a6983e5454813c1b.zip |
make whitespace work better for the help text
Diffstat (limited to 'eclass/vim-plugin.eclass')
-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 " " |