From 0493a0fcf83e9863e54a7a5c468d9ad194ed7a51 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Fri, 18 Dec 1992 13:52:26 +0000 Subject: [PATCH] Changed a use of LOOP slightly to work around a bug until Paul gets it fixed. --- code/c-call.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/c-call.lisp b/code/c-call.lisp index 9807448f8..33bad1aac 100644 --- a/code/c-call.lisp +++ b/code/c-call.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/c-call.lisp,v 1.11 1992/03/04 17:08:52 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/c-call.lisp,v 1.12 1992/12/18 13:52:26 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -79,7 +79,7 @@ (let ((length (loop for offset of-type fixnum upfrom 0 until (zerop (deref ptr offset)) - finally return offset))) + finally (return offset)))) (let ((result (make-string length))) (kernel:copy-from-system-area (alien-sap ptr) 0 result (* vm:vector-data-offset -- GitLab