From 0fb5749096c6f771a6aa430dc7aea3110abf1e06 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Sun, 11 Apr 2004 10:35:14 +0000 Subject: [PATCH] r8945: fix typos --- os.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.34.1