From 8550d408609dd0eccf93c9ab0c20143311ce7c7c 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 --- base/utils.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/utils.lisp b/base/utils.lisp index 8997c30..c9590ec 100644 --- a/base/utils.lisp +++ b/base/utils.lisp @@ -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 -- 2.34.1