From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: [PATCH 3/6] build-system/emacs: Use 'emacs-minimal' as default emacs for building. Date: Mon, 16 May 2016 21:20:21 +0300 Message-ID: <1463422824-7161-4-git-send-email-alezost@gmail.com> References: <1463422824-7161-1-git-send-email-alezost@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41741) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b2N8L-0004Zp-T6 for guix-devel@gnu.org; Mon, 16 May 2016 14:20:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b2N8B-0008G7-K6 for guix-devel@gnu.org; Mon, 16 May 2016 14:20:48 -0400 Received: from mail-lb0-x234.google.com ([2a00:1450:4010:c04::234]:35734) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b2N8B-0008Fh-D0 for guix-devel@gnu.org; Mon, 16 May 2016 14:20:39 -0400 Received: by mail-lb0-x234.google.com with SMTP id ww9so44918915lbc.2 for ; Mon, 16 May 2016 11:20:39 -0700 (PDT) Received: from localhost.localdomain ([217.107.192.156]) by smtp.gmail.com with ESMTPSA id rs2sm5576775lbb.33.2016.05.16.11.20.37 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 16 May 2016 11:20:38 -0700 (PDT) In-Reply-To: <1463422824-7161-1-git-send-email-alezost@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * guix/build-system/emacs.scm (default-emacs): Use 'emacs-minimal'. --- guix/build-system/emacs.scm | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/guix/build-system/emacs.scm b/guix/build-system/emacs.scm index 017e6ef..995fce7 100644 --- a/guix/build-system/emacs.scm +++ b/guix/build-system/emacs.scm @@ -49,11 +49,7 @@ "Return the default Emacs package." ;; Lazily resolve the binding to avoid a circular dependency. (let ((emacs-mod (resolve-interface '(gnu packages emacs)))) - ;; we use 'emacs' instead of 'emacs-no-x' because the latter appears not - ;; to be loading some macros and causes problems to some packages. For - ;; example, with the latter AUCTeX gives the error message: - ;; "(invalid-function dbus-ignore-errors)". - (module-ref emacs-mod 'emacs))) + (module-ref emacs-mod 'emacs-minimal))) (define* (lower name #:key source inputs native-inputs outputs system target -- 2.7.3