fix bug in deserializer; also change scribble eval to not use sandbox module mode

svn: r8280

original commit: 2d08c177252d8c8e0fdbc9a557857d0ade19c1f8
This commit is contained in:
Matthew Flatt 2008-01-10 19:47:13 +00:00
parent 50b3a68191
commit 4a3d0e82ba

View File

@ -209,7 +209,7 @@
[sandbox-error-output 'string]
[sandbox-eval-limits #f]
[sandbox-make-inspector current-inspector])
(make-evaluator 'scheme/base)))
(make-evaluator '(begin (require scheme/base)))))
(define (do-plain-eval ev s catching-exns?)
(call-with-values (lambda ()
@ -223,6 +223,8 @@
[(module . _rest)
(syntax->datum s)]
[_else s])]
[(bytes? s)
`(begin ,s)]
[(string? s)
`(begin ,s)]
[else s]))))