diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-10-19 19:51:12 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-10-19 19:51:12 +0000 |
commit | d5cd4b5c512d164a1257ef0d7eda8b986a540d44 (patch) | |
tree | da349c21a5ca3fcc673aa93e70ff42277541e5d8 /eclass/elisp-common.eclass | |
parent | ~alpha keyword, bug 66691. (Manifest recommit) (diff) | |
download | gentoo-2-d5cd4b5c512d164a1257ef0d7eda8b986a540d44.tar.gz gentoo-2-d5cd4b5c512d164a1257ef0d7eda8b986a540d44.tar.bz2 gentoo-2-d5cd4b5c512d164a1257ef0d7eda8b986a540d44.zip |
'...' -> ' ...'
Diffstat (limited to 'eclass/elisp-common.eclass')
-rw-r--r-- | eclass/elisp-common.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass index aa2de1206326..26f9c9e58694 100644 --- a/eclass/elisp-common.eclass +++ b/eclass/elisp-common.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/elisp-common.eclass,v 1.8 2004/07/04 14:00:50 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.9 2004/10/19 19:51:12 vapier Exp $ # # Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org> # Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> @@ -36,7 +36,7 @@ elisp-site-file-install() { } elisp-site-regen() { - einfo "Regenerating ${SITELISP}/site-gentoo.el..." + einfo "Regenerating ${SITELISP}/site-gentoo.el ..." einfo "" cat <<EOF >${SITELISP}/site-gentoo.el ;;; DO NOT EDIT THIS FILE -- IT IS GENERATED AUTOMATICALLY BY PORTAGE @@ -46,9 +46,9 @@ EOF ls ${SITELISP}/[0-9][0-9]*-gentoo.el |sort -n | \ while read sf do - einfo " Adding $(basename $sf)..." + einfo " Adding $(basename $sf) ..." # Great for debugging, too noisy and slow for users though -# echo "(message \"Loading $sf...\")" >>${SITELISP}/site-start.el +# echo "(message \"Loading $sf ...\")" >>${SITELISP}/site-start.el cat $sf >>${SITELISP}/site-gentoo.el done while read line; do einfo "${line}"; done <<EOF |