aboutsummaryrefslogtreecommitdiff
path: root/src/interp/preparse.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/preparse.lisp')
-rw-r--r--src/interp/preparse.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/preparse.lisp b/src/interp/preparse.lisp
index 8adb40e1..de612cfd 100644
--- a/src/interp/preparse.lisp
+++ b/src/interp/preparse.lisp
@@ -81,12 +81,12 @@
(with-open-stream
(in-stream (or (and *boot-input-file*
(open *boot-input-file* :direction :input))
- *standard-input*))
+ |$InputStream|))
(declare (special in-stream))
(with-open-stream
(out-stream (if *boot-output-file*
(open *boot-output-file* :direction :output)
- *standard-output*))
+ |$OutputStream|))
(declare (special out-stream))
(initialize-preparse in-stream)
(do ((lines (PREPARSE in-stream) (PREPARSE in-stream))) ((null lines)))))