diff options
author | Ulrich Müller <ulm@gentoo.org> | 2008-08-10 16:54:22 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2008-08-10 16:54:22 +0000 |
commit | 7de4276ba21f092598cef8fbb497c359733a9b54 (patch) | |
tree | f22337f807cbc1c7553284f93228e79ff6445245 /eclass | |
parent | Removed kde and qt3 USE flag. Removed PDEPEND. (diff) | |
download | gentoo-2-7de4276ba21f092598cef8fbb497c359733a9b54.tar.gz gentoo-2-7de4276ba21f092598cef8fbb497c359733a9b54.tar.bz2 gentoo-2-7de4276ba21f092598cef8fbb497c359733a9b54.zip |
Fix issue with empty einfo lines in elisp-site-regen. Indent here-document.
Change wording of message, "no longer" -> "not", since the underlying change
from site-start.el to site-gentoo.el was in 2004.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/elisp-common.eclass | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass index 2a6fe1cf7a29..4dc9ed3f277c 100644 --- a/eclass/elisp-common.eclass +++ b/eclass/elisp-common.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.41 2008/07/01 22:10:06 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.42 2008/08/10 16:54:22 ulm Exp $ # # Copyright 2002-2004 Matthew Kennedy <mkennedy@gentoo.org> # Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> @@ -378,22 +378,22 @@ elisp-site-regen() { einfo "Regenerated ${SITELISP}/site-gentoo.el." echo - while read line; do einfo "${line}"; done <<EOF -All site initialisation for Gentoo-installed packages is added to -/usr/share/emacs/site-lisp/site-gentoo.el; site-start.el is no longer -managed by Gentoo. You are responsible for all maintenance of -site-start.el if there is such a file. - -In order for this site initialisation to be loaded for all users -automatically, you can add a line like this: - - (require 'site-gentoo) - -to /usr/share/emacs/site-lisp/site-start.el. Alternatively, that line -can be added by individual users to their initialisation files, or, -for greater flexibility, users can load individual package-specific -initialisation files from /usr/share/emacs/site-lisp/site-gentoo.d/. -EOF + while read line; do einfo "${line:- }"; done <<-EOF + All site initialisation for Gentoo-installed packages is added to + /usr/share/emacs/site-lisp/site-gentoo.el; site-start.el is not + managed by Gentoo. You are responsible for all maintenance of + site-start.el if there is such a file. + + In order for this site initialisation to be loaded for all users + automatically, you can add a line like this: + + (require 'site-gentoo) + + to /usr/share/emacs/site-lisp/site-start.el. Alternatively, that line + can be added by individual users to their initialisation files, or, + for greater flexibility, users can load individual package-specific + initialisation files from /usr/share/emacs/site-lisp/site-gentoo.d/. + EOF echo fi |