Explicitly marking read-accept-lang #t

This commit is contained in:
Danny Yoo 2012-05-04 16:04:17 -04:00
parent 325506452d
commit 9ff59deb1c
2 changed files with 3 additions and 1 deletions

View File

@ -77,6 +77,7 @@
(define (get-compiled-code-from-port ip)
;(printf "get-compiled-code-from-port\n")
(parameterize ([read-accept-reader #t]
[read-accept-lang #t]
;; Note: we're trying to preserve the context, to avoid code expansion.
[compile-context-preservation-enabled #t]
[current-namespace base-namespace])

View File

@ -71,7 +71,8 @@
(fprintf (current-report-port) "\nFor reference, the error message produced when trying to read ~e is:\n\n" module-source-path)
(fprintf (current-report-port) "~a\n" (exn-message exn))
(abort-abort))])
(parameterize ([read-accept-reader #t])
(parameterize ([read-accept-reader #t]
[read-accept-lang #t])
(call-with-input-file* module-source-path
(lambda (ip)
(port-count-lines! ip)