Fix reading of config.rktd file when in strange readtable.

This commit is contained in:
Sam Tobin-Hochstadt 2013-07-02 16:14:35 -04:00
parent 4dcfe9b8b9
commit 45c276b5db

View File

@ -26,7 +26,9 @@
(if (file-exists? p)
(call-with-input-file*
p
(lambda (in) (read in)))
(lambda (in)
(parameterize ([current-readtable (make-readtable #f)])
(read in))))
#hash()))
#hash()))))