Simon Tournier <zimon.touto...@gmail.com> skribis: > 1 file changed, 3 insertions(+), 3 deletions(-) > guix/scripts/repl.scm | 6 +++--- > > modified guix/scripts/repl.scm > @@ -27,7 +27,7 @@ (define-module (guix scripts repl) > #:use-module (srfi srfi-37) > #:use-module (ice-9 match) > #:use-module (rnrs bytevectors) > - #:autoload (guix describe) (current-profile) > + #:autoload (gnu packages) (%package-module-path) > #:autoload (system repl repl) (start-repl) > #:autoload (system repl server) > (make-tcp-server-socket make-unix-domain-server-socket) > @@ -193,7 +193,7 @@ (define script > ;; 'set-program-arguments'. This in turn ensures that > ;; (%package-module-path) will contain entries for the channels > ;; available in the current profile. > - (current-profile) > + (%package-module-path)
Per the comment right above, this change would break the program name memoization, wouldn’t it? Ludo’.