Explicitly marking read-accept-lang #t
This commit is contained in:
parent
325506452d
commit
9ff59deb1c
|
@ -77,6 +77,7 @@
|
||||||
(define (get-compiled-code-from-port ip)
|
(define (get-compiled-code-from-port ip)
|
||||||
;(printf "get-compiled-code-from-port\n")
|
;(printf "get-compiled-code-from-port\n")
|
||||||
(parameterize ([read-accept-reader #t]
|
(parameterize ([read-accept-reader #t]
|
||||||
|
[read-accept-lang #t]
|
||||||
;; Note: we're trying to preserve the context, to avoid code expansion.
|
;; Note: we're trying to preserve the context, to avoid code expansion.
|
||||||
[compile-context-preservation-enabled #t]
|
[compile-context-preservation-enabled #t]
|
||||||
[current-namespace base-namespace])
|
[current-namespace base-namespace])
|
||||||
|
|
|
@ -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) "\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))
|
(fprintf (current-report-port) "~a\n" (exn-message exn))
|
||||||
(abort-abort))])
|
(abort-abort))])
|
||||||
(parameterize ([read-accept-reader #t])
|
(parameterize ([read-accept-reader #t]
|
||||||
|
[read-accept-lang #t])
|
||||||
(call-with-input-file* module-source-path
|
(call-with-input-file* module-source-path
|
||||||
(lambda (ip)
|
(lambda (ip)
|
||||||
(port-count-lines! ip)
|
(port-count-lines! ip)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user