diff options
author | dos-reis <gdr@axiomatics.org> | 2008-03-29 02:41:03 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-03-29 02:41:03 +0000 |
commit | 5b6d45a2ce9252daf2392b1fe189f9cdfce19bb1 (patch) | |
tree | 074ca5ced9682e2eb7e8595156d164ce80e29301 /src/interp/comp.lisp | |
parent | e609586105f5a9b2b314a9dbeab0e7ec47d66b85 (diff) | |
download | open-axiom-5b6d45a2ce9252daf2392b1fe189f9cdfce19bb1.tar.gz |
* interp/comp.lisp: Fix thinko.
Diffstat (limited to 'src/interp/comp.lisp')
-rw-r--r-- | src/interp/comp.lisp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/comp.lisp b/src/interp/comp.lisp index 870bcb63..f2bb2a91 100644 --- a/src/interp/comp.lisp +++ b/src/interp/comp.lisp @@ -94,7 +94,7 @@ (|$OutputStream| (if |$InteractiveMode| (make-broadcast-stream) - (make-synonym-stream *standard-output*)))) + (make-synonym-stream '*standard-output*)))) (COMP fn))) #-:CCL @@ -103,7 +103,7 @@ ;; following creates a null outputstream if $InteractiveMode (|$OutputStream| (if |$InteractiveMode| (make-broadcast-stream) - (make-synonym-stream *standard-output*)))) + (make-synonym-stream '*standard-output*)))) (COMPILE-FILE fn))) #+:CCL @@ -165,7 +165,7 @@ (|$OutputStream| (if |$InteractiveMode| (make-broadcast-stream) - (make-synonym-stream *standard-output*)))) + (make-synonym-stream '*standard-output*)))) (COMP370 fn))) (defun COMP-1 (X) |