From 6e2bb13a2119d1fa637f297234a307f42b1d798c Mon Sep 17 00:00:00 2001 From: Mike Kelly Date: Wed, 21 Mar 2007 03:40:22 +0000 Subject: Use elog instead of einfo in the appropriate places. --- eclass/vim-plugin.eclass | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'eclass/vim-plugin.eclass') 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 } -- cgit v1.2.3-65-gdbad