From 00cfe953a739781bb894e9311c2ffa3cd0e9d221 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Mon, 7 Jun 2010 09:17:14 -0500 Subject: [PATCH] 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) --- collects/drracket/private/module-language.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/drracket/private/module-language.rkt b/collects/drracket/private/module-language.rkt index 751977776d..3362f4370c 100644 --- a/collects/drracket/private/module-language.rkt +++ b/collects/drracket/private/module-language.rkt @@ -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