From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Kp6vP-0000vQ-5a for garchives@archives.gentoo.org; Sun, 12 Oct 2008 19:48:23 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64856E0430; Sun, 12 Oct 2008 19:48:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 37F28E0430 for ; Sun, 12 Oct 2008 19:48:23 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 0398F6457C for ; Sun, 12 Oct 2008 19:48:22 +0000 (UTC) Received: from ulm by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1Kp6vN-0001NN-LZ for gentoo-commits@lists.gentoo.org; Sun, 12 Oct 2008 19:48:21 +0000 From: "Ulrich Mueller (ulm)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ulm@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: elisp-common.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: elisp-common.eclass X-VCS-Directories: eclass X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Mueller Content-Type: text/plain; charset=utf8 Message-Id: Sender: Ulrich Mueller Date: Sun, 12 Oct 2008 19:48:21 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 80315f98-c77b-4414-a7c5-01821ed43aaf X-Archives-Hash: 31bde46e1f8b080340f34a4ed69e7c8f ulm 08/10/12 19:48:21 Modified: elisp-common.eclass Log: Add function names to error messages. Revision Changes Path 1.49 eclass/elisp-common.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp-commo= n.eclass?rev=3D1.49&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp-commo= n.eclass?rev=3D1.49&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/elisp-commo= n.eclass?r1=3D1.48&r2=3D1.49 Index: elisp-common.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v retrieving revision 1.48 retrieving revision 1.49 diff -u -r1.48 -r1.49 --- elisp-common.eclass 5 Oct 2008 13:56:08 -0000 1.48 +++ elisp-common.eclass 12 Oct 2008 19:48:21 -0000 1.49 @@ -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.48 200= 8/10/05 13:56:08 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.49 200= 8/10/12 19:48:21 ulm Exp $ # # Copyright 2002-2004 Matthew Kennedy # Copyright 2003 Jeremy Maitin-Shepard @@ -174,7 +174,7 @@ elisp-compile() { ebegin "Compiling GNU Emacs Elisp files" ${EMACS} ${EMACSFLAGS} ${BYTECOMPFLAGS} -f batch-byte-compile "$@" - eend $? "batch-byte-compile failed" + eend $? "elisp-compile: batch-byte-compile failed" } =20 # #FUNCTION: elisp-comp @@ -219,8 +219,7 @@ popd rm -fr ${tempdir} =20 - eend ${ret} "batch-byte-compile failed" - return ${ret} + eend ${ret} "elisp-comp: batch-byte-compile failed" } =20 # @FUNCTION: elisp-emacs-version @@ -266,7 +265,7 @@ --eval "(setq generated-autoload-file (expand-file-name \"${f}\"))" \ -f batch-update-autoloads "${@-.}" =20 - eend $? "batch-update-autoloads failed" + eend $? "elisp-make-autoload-file: batch-update-autoloads failed" } =20 # @FUNCTION: elisp-install @@ -282,7 +281,7 @@ insinto "${SITELISP}/${subdir}" doins "$@" ) - eend $? "doins failed" + eend $? "elisp-install: doins failed" } =20 # @FUNCTION: elisp-site-file-install @@ -302,7 +301,7 @@ ) ret=3D$? rm -f "${sf}" - eend ${ret} "doins failed" + eend ${ret} "elisp-site-file-install: doins failed" } =20 # @FUNCTION: elisp-site-regen @@ -321,7 +320,7 @@ local tmpdir=3D${T:-$(mktemp -d)} =20 if [ ! -d "${ROOT}${SITELISP}" ]; then - eerror "Directory ${SITELISP} does not exist" + eerror "elisp-site-regen: Directory ${SITELISP} does not exist" return 1 fi =20