diff options
author | Christopher Baines <mail@cbaines.net> | 2019-09-29 13:58:17 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-10-01 19:01:20 +0100 |
commit | 2cd599f005bb91ae120a66824b8efbac81a27a69 (patch) | |
tree | f02dca5192191ee7af65bb8faa5f4ee74cd6631d /guix/inferior.scm | |
parent | 18edc9db02658c597695905121a9df68e9118ab8 (diff) | |
download | gnu-guix-2cd599f005bb91ae120a66824b8efbac81a27a69.tar gnu-guix-2cd599f005bb91ae120a66824b8efbac81a27a69.tar.gz |
inferior: Change to use the (guix repl) module.
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).
Diffstat (limited to 'guix/inferior.scm')
-rw-r--r-- | guix/inferior.scm | 4 |
1 files 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)) |