From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:46174) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iEb0U-0005OV-E0 for guix-patches@gnu.org; Sun, 29 Sep 2019 11:21:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iEb0Q-0006x4-Ih for guix-patches@gnu.org; Sun, 29 Sep 2019 11:21:06 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:46721) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iEb0Q-0006wy-Fx for guix-patches@gnu.org; Sun, 29 Sep 2019 11:21:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iEb0Q-0007wN-9o for guix-patches@gnu.org; Sun, 29 Sep 2019 11:21: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:20:04 +0100 Message-Id: <20190929152004.20467-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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/inferior.scm b/guix/inferior.scm index dcbc954432..dcffb7b4ab 100644 --- a/guix/inferior.scm +++ b/guix/inferior.scm @@ -137,7 +137,7 @@ it's an old Guix." `(begin (primitive-load ,(search-path %load-path "guix/scripts/repl.scm")) - ((@ (guix scripts repl) machine-repl)))))) + ((@ (guix repl) machine-repl)))))) pipe))) (define* (port->inferior pipe #:optional (close close-port)) -- 2.23.0