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-spell.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-spell.eclass')
-rw-r--r-- | eclass/vim-spell.eclass | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/eclass/vim-spell.eclass b/eclass/vim-spell.eclass index 045c6ab859b6..0b4d1724e3b1 100644 --- a/eclass/vim-spell.eclass +++ b/eclass/vim-spell.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim-spell.eclass,v 1.5 2006/01/23 21:35:21 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim-spell.eclass,v 1.6 2007/03/21 03:40:22 pioto Exp $ # # Original Author: Ciaran McCreesh <ciaranm@gentoo.org> @@ -99,20 +99,20 @@ vim-spell_src_install() { vim-spell_pkg_postinst() { target="/usr/share/vim/vimfiles/spell/" echo - einfo "To enable ${VIM_SPELL_LANGUAGE} spell checking, use" - einfo " :setlocal spell spelllang=${VIM_SPELL_CODE}" + elog "To enable ${VIM_SPELL_LANGUAGE} spell checking, use" + elog " :setlocal spell spelllang=${VIM_SPELL_CODE}" echo - einfo "The following (Vim internal, not file) encodings are supported for" - einfo "this language:" + elog "The following (Vim internal, not file) encodings are supported for" + elog "this language:" for f in "${ROOT}/${target}/${VIM_SPELL_CODE}".*.spl ; do enc="${f##*/${VIM_SPELL_CODE}.}" enc="${enc%.spl}" [[ -z "${enc}" ]] && continue - einfo " ${enc}" + elog " ${enc}" done echo - einfo "For further documentation, use:" - einfo " :help spell" + elog "For further documentation, use:" + elog " :help spell" echo epause } |