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)
base/utils.lisp

index 8997c30c9e5798b06fd6c4b1ef42f8663edcf902..c9590ec2fd96ec31e0c66a69d38a6e2ce2ae9230 100644 (file)
@@ -178,14 +178,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