From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B45C8138334 for ; Sat, 21 Dec 2019 18:53:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9239E092F; Sat, 21 Dec 2019 18:53:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CAB9DE092F for ; Sat, 21 Dec 2019 18:53:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 671B034D27F for ; Sat, 21 Dec 2019 18:53:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F0EF530C for ; Sat, 21 Dec 2019 18:53:35 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1576954350.ab8e00b6f18b1e61f52b5313ab4645e57b4c19bf.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/elisp-common.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: ab8e00b6f18b1e61f52b5313ab4645e57b4c19bf X-VCS-Branch: master Date: Sat, 21 Dec 2019 18:53:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7432b529-5d08-4c6e-969b-631cc0db2553 X-Archives-Hash: f1d1e995228acdcd54279068d95e6c10 commit: ab8e00b6f18b1e61f52b5313ab4645e57b4c19bf Author: Ulrich Müller gentoo org> AuthorDate: Sat Dec 21 18:52:30 2019 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Dec 21 18:52:30 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab8e00b6 elisp-common.eclass: Report Emacs version with einfo, not elog. Signed-off-by: Ulrich Müller gentoo.org> eclass/elisp-common.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass index d76c9e5a938..a4bff25f165 100644 --- a/eclass/elisp-common.eclass +++ b/eclass/elisp-common.eclass @@ -252,7 +252,7 @@ elisp-check-emacs-version() { local have_emacs have_emacs=$(elisp-emacs-version) \ || die "Could not determine Emacs version" - elog "Emacs version: ${have_emacs}" + einfo "Emacs version: ${have_emacs}" if [[ ${have_emacs} =~ XEmacs|Lucid ]]; then die "XEmacs detected. This package needs GNU Emacs." fi