removed an unecessary parameter (the function was only called in one place and the argument expression was a variable that was also bound in the body of the called function and that variable was already used in a few other places, so the parameter was confusing here, making it seem to be a different value)
This commit is contained in:
parent
9d75530d97
commit
00cfe953a7
|
@ -317,11 +317,11 @@
|
|||
(call-with-continuation-prompt
|
||||
(λ () (with-stack-checkpoint
|
||||
(begin
|
||||
(*do-module-specified-configuration modspec)
|
||||
(*do-module-specified-configuration)
|
||||
(namespace-require modspec))))))
|
||||
(current-namespace (module->namespace modspec))
|
||||
(check-interactive-language))
|
||||
(define (*do-module-specified-configuration modspec)
|
||||
(define (*do-module-specified-configuration)
|
||||
(let ([info (module->language-info modspec #t)])
|
||||
(when info
|
||||
(let ([get-info
|
||||
|
|
Loading…
Reference in New Issue
Block a user