From 7af41fddc3eebe43664a03b4a330e305d7694e11 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Tue, 15 Feb 2011 19:05:21 -0600 Subject: [PATCH] We no longer need to avoid IO or worry about exceptions, so drop the with-handlers. Revert "This is a change to paper over a bug elsewhere in the system that threatens the release." This reverts commit 25adab8cbb90902480f1c1657829006803e6843e. --- collects/lang/htdp-langs.rkt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/collects/lang/htdp-langs.rkt b/collects/lang/htdp-langs.rkt index 5dfa39c10c..719712085f 100644 --- a/collects/lang/htdp-langs.rkt +++ b/collects/lang/htdp-langs.rkt @@ -439,8 +439,7 @@ (define/override (first-opened settings) (for ([tp (in-list (htdp-lang-settings-teachpacks settings))]) - (with-handlers ((exn:fail? void)) - (namespace-require/constant tp)))) + (namespace-require/constant tp))) (inherit get-module get-transformer-module get-init-code use-namespace-require/copy?)