Skip to content
Snippets Groups Projects
Commit 0493a0fc authored by wlott's avatar wlott
Browse files

Changed a use of LOOP slightly to work around a bug until Paul gets it

fixed.
parent da0ceeec
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (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 @@ ...@@ -79,7 +79,7 @@
(let ((length (loop (let ((length (loop
for offset of-type fixnum upfrom 0 for offset of-type fixnum upfrom 0
until (zerop (deref ptr offset)) until (zerop (deref ptr offset))
finally return offset))) finally (return offset))))
(let ((result (make-string length))) (let ((result (make-string length)))
(kernel:copy-from-system-area (alien-sap ptr) 0 (kernel:copy-from-system-area (alien-sap ptr) 0
result (* vm:vector-data-offset result (* vm:vector-data-offset
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment