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 25adab8cbb.
This commit is contained in:
Robby Findler 2011-02-15 19:05:21 -06:00
parent e3c26a2aa4
commit 7af41fddc3

View File

@ -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?)