diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2013-06-11 15:29:25 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2013-06-11 15:29:25 +0200 |
commit | 5e1b969e20004f49f1174346a612269c56d0d785 (patch) | |
tree | 08b5b40eb500c22acea2b5e136b0b09343f3773d /scheme/racket/geiser/modules.rkt | |
parent | 7b1a1d046059eb2ce68ea02706a0e7494c39684f (diff) | |
download | geiser-guile-5e1b969e20004f49f1174346a612269c56d0d785.tar.gz geiser-guile-5e1b969e20004f49f1174346a612269c56d0d785.tar.bz2 |
racket: struggling with submodules
Submodule (re)loading is not without pecularities. In particular,
module[*+] submodules are not visited the first time one enters its
parent, but once you load them once, they're revisited every time we
load the parent afterwards--racket's native enter! exhibits the same
behaviour, so i'm guessing we'll have to live with that.
There is however a glitch in that submodules can only be reloaded then
by loading the parent, so we need to confirm that this is expected
behaviour and, if it is, automating the parent's load when the
submodule's is requested.
On the other hand, entering a module[*+] is not working in Geiser yet,
and it does in plain racket, so this one is our fault. Working on it.
Diffstat (limited to 'scheme/racket/geiser/modules.rkt')
-rw-r--r-- | scheme/racket/geiser/modules.rkt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scheme/racket/geiser/modules.rkt b/scheme/racket/geiser/modules.rkt index a4fbd6f..93d8b79 100644 --- a/scheme/racket/geiser/modules.rkt +++ b/scheme/racket/geiser/modules.rkt @@ -47,7 +47,7 @@ (define (load-module spec (port #f) (ns #f)) (parameterize ([current-error-port (or port nowhere)]) - (enter-module (ensure-module-spec spec)) + (visit-module (ensure-module-spec spec)) (when (namespace? ns) (current-namespace ns)))) |