diff options
author | Mike Kelly <pioto@gentoo.org> | 2007-03-21 03:40:22 +0000 |
---|---|---|
committer | Mike Kelly <pioto@gentoo.org> | 2007-03-21 03:40:22 +0000 |
commit | 6e2bb13a2119d1fa637f297234a307f42b1d798c (patch) | |
tree | 7ae2c13fb8a01a7373b37da4b4afc878d88e4ec5 /eclass/vim-plugin.eclass | |
parent | adding beryl-0.2.1 to the tree (diff) | |
download | gentoo-2-6e2bb13a2119d1fa637f297234a307f42b1d798c.tar.gz gentoo-2-6e2bb13a2119d1fa637f297234a307f42b1d798c.tar.bz2 gentoo-2-6e2bb13a2119d1fa637f297234a307f42b1d798c.zip |
Use elog instead of einfo in the appropriate places.
Diffstat (limited to 'eclass/vim-plugin.eclass')
-rw-r--r-- | eclass/vim-plugin.eclass | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/eclass/vim-plugin.eclass b/eclass/vim-plugin.eclass index 1470bba392e4..3ba8595303be 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.19 2007/01/12 05:18:24 pioto Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim-plugin.eclass,v 1.20 2007/03/21 03:40:22 pioto Exp $ # # This eclass simplifies installation of app-vim plugins into # /usr/share/vim/vimfiles. This is a version-independent directory @@ -109,35 +109,35 @@ display_vim_plugin_help() { local h if [[ -n "${VIM_PLUGIN_HELPFILES}" ]] ; then - einfo " " - einfo "This plugin provides documentation via vim's help system. To" - einfo "view it, use:" + elog " " + elog "This plugin provides documentation via vim's help system. To" + elog "view it, use:" for h in ${VIM_PLUGIN_HELPFILES} ; do - einfo " :help ${h}" + elog " :help ${h}" done - einfo " " + elog " " elif [[ -n "${VIM_PLUGIN_HELPTEXT}" ]] ; then - einfo " " + elog " " while read h ; do - einfo "$h" + elog "$h" done <<<"${VIM_PLUGIN_HELPTEXT}" - einfo " " + elog " " elif [[ -n "${VIM_PLUGIN_HELPURI}" ]] ; then - einfo " " - einfo "Documentation for this plugin is available online at:" - einfo " ${VIM_PLUGIN_HELPURI}" - einfo " " + elog " " + elog "Documentation for this plugin is available online at:" + elog " ${VIM_PLUGIN_HELPURI}" + elog " " fi if hasq "filetype" "${VIM_PLUGIN_MESSAGES}" ; then - einfo "This plugin makes use of filetype settings. To enable these," - einfo "add lines like:" - einfo " filetype plugin on" - einfo " filetype indent on" - einfo "to your ~/.vimrc file." - einfo " " + elog "This plugin makes use of filetype settings. To enable these," + elog "add lines like:" + elog " filetype plugin on" + elog " filetype indent on" + elog "to your ~/.vimrc file." + elog " " fi } |