fix DrScheme REPL, whose old use of dynamic-require is no longer enough to instantiate compile-time support (PR 10185)
svn: r14453
This commit is contained in:
parent
7638f0fa98
commit
a472a4452c
|
@ -234,7 +234,11 @@
|
|||
(parameterize ([current-namespace (current-namespace)])
|
||||
;; the prompt makes it continue after an error
|
||||
(call-with-continuation-prompt
|
||||
(λ () (dynamic-require modspec #f))))
|
||||
(λ ()
|
||||
;; instantiate compile time:
|
||||
(dynamic-require modspec (void))
|
||||
;; instantiate run time:
|
||||
(dynamic-require modspec #f))))
|
||||
(current-namespace (module->namespace modspec))
|
||||
(check-interactive-language))
|
||||
;; here's where they're all combined with the module expression
|
||||
|
|
Loading…
Reference in New Issue
Block a user