r8945: fix typos
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 11 Apr 2004 10:35:14 +0000 (10:35 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 11 Apr 2004 10:35:14 +0000 (10:35 +0000)
os.lisp

diff --git a/os.lisp b/os.lisp
index 954a27f84796e1d277d29cd14319e60a92f01883..818a4da07f2f7d78508b3b3e44cbfb95acd0dfd1 100644 (file)
--- a/os.lisp
+++ b/os.lisp
@@ -45,14 +45,14 @@ returns (VALUES string-output error-output exit-status)"
     
     #+lispworks
     ;; BUG: Lispworks combines output and error streams
-    (let ((output (make-output-string-stream)))
+    (let ((output (make-string-output-stream)))
       (unwind-protect
          (let ((status 
                 (system:call-system-showing-output
                  command
                  :shell-type "/bin/sh"
                  :output-stream output)))
-           (values (get-output-string output) nil status))
+           (values (get-output-stream-string output) nil status))
        (close output)))
     
     #+clisp