From cf2c8da9ac674102d36825ec9386067175a03c61 Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Sat, 26 Oct 2002 06:16:34 +0000 Subject: [PATCH] 2002-10-20 Mikael Djurfeldt * 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 6973a8f36..9ab2ad3f4 100644 --- a/ice-9/boot-9.scm +++ b/ice-9/boot-9.scm @@ -3009,8 +3009,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)