X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=os.lisp;h=818a4da07f2f7d78508b3b3e44cbfb95acd0dfd1;hp=954a27f84796e1d277d29cd14319e60a92f01883;hb=0fb5749096c6f771a6aa430dc7aea3110abf1e06;hpb=2a2cce0340008aecb97cefa7ebce1f244f0a9853 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