From: Kevin M. Rosenberg Date: Sun, 11 Apr 2004 10:35:14 +0000 (+0000) Subject: r8945: fix typos X-Git-Tag: v1.96~80 X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=commitdiff_plain;h=0fb5749096c6f771a6aa430dc7aea3110abf1e06;hp=2a2cce0340008aecb97cefa7ebce1f244f0a9853 r8945: fix typos --- diff --git a/os.lisp b/os.lisp index 954a27f..818a4da 100644 --- 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