From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:50168) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iEbaF-0002mh-St for guix-patches@gnu.org; Sun, 29 Sep 2019 11:58:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iEbaE-0007yX-Rc for guix-patches@gnu.org; Sun, 29 Sep 2019 11:58:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:46790) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iEbaE-0007yK-LT for guix-patches@gnu.org; Sun, 29 Sep 2019 11:58:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iEbaE-0004X2-Ix for guix-patches@gnu.org; Sun, 29 Sep 2019 11:58:02 -0400 Subject: [bug#37553] [PATCH] inferior: Change to use the (guix repl) module. References: <20190929130128.18484-1-mail@cbaines.net> In-Reply-To: <20190929130128.18484-1-mail@cbaines.net> Resent-Message-ID: From: Christopher Baines Date: Sun, 29 Sep 2019 16:57:28 +0100 Message-Id: <20190929155728.27777-1-mail@cbaines.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 37553@debbugs.gnu.org Rather than (guix scripts repl), from which the machine-repl procedure was removed in [1]. 1: 92a4087bf4862d5ba9b77111eba3c68c2a1c4679 * guix/inferior.scm (inferior-pipe): Load (guix repl) rather than (guix scripts repl). --- guix/inferior.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guix/inferior.scm b/guix/inferior.scm index dcbc954432..d6d2053ab8 100644 --- a/guix/inferior.scm +++ b/guix/inferior.scm @@ -136,8 +136,8 @@ it's an old Guix." (object->string `(begin (primitive-load ,(search-path %load-path - "guix/scripts/repl.scm")) - ((@ (guix scripts repl) machine-repl)))))) + "guix/repl.scm")) + ((@ (guix repl) machine-repl)))))) pipe))) (define* (port->inferior pipe #:optional (close close-port)) -- 2.23.0