From 454b82f41f23a75d2d696b24f8f41f1629b02e52 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Sun, 20 Oct 2002 21:51:16 +0000 Subject: [PATCH] * boot-9.scm (top-repl): Look for use-emacs-interface in guile-user-module (should it be there?) instead of the-root-module. --- ice-9/boot-9.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ice-9/boot-9.scm b/ice-9/boot-9.scm index f3d50b744..c3ef7f6f2 100644 --- a/ice-9/boot-9.scm +++ b/ice-9/boot-9.scm @@ -2832,8 +2832,8 @@ (let ((guile-user-module (resolve-module '(guile-user)))) ;; Load emacs interface support if emacs option is given. - (if (and (module-defined? the-root-module 'use-emacs-interface) - (module-ref the-root-module 'use-emacs-interface)) + (if (and (module-defined? guile-user-module 'use-emacs-interface) + (module-ref guile-user-module 'use-emacs-interface)) (load-emacs-interface)) ;; Use some convenient modules (in reverse order)