Fix reading of config.rktd file when in strange readtable.
This commit is contained in:
parent
4dcfe9b8b9
commit
45c276b5db
|
@ -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()))))
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user