From f172ab2796ed99082e21458829ad2929f52e7129 Mon Sep 17 00:00:00 2001 From: pw <pw> Date: Thu, 20 Sep 2001 14:23:05 +0000 Subject: [PATCH] First commit to new cvs server. I hope it works! From cmucl-imp before server went down. Forgot submitters name, sorry! Fix fill-pointer-ouch to work on adjustable arrays of zero length. --- code/stream.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/stream.lisp b/code/stream.lisp index 577e1515d..634cd4d07 100644 --- a/code/stream.lisp +++ b/code/stream.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/stream.lisp,v 1.47 2001/07/08 17:37:55 pw Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/stream.lisp,v 1.48 2001/09/20 14:23:05 pw Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1249,7 +1249,7 @@ (let ((offset-current (+ start current))) (declare (fixnum offset-current)) (if (= offset-current end) - (let* ((new-length (* current 2)) + (let* ((new-length (if (zerop current) 1 (* current 2))) (new-workspace (make-string new-length))) (declare (simple-string new-workspace)) (%primitive byte-blt workspace start new-workspace 0 current) -- GitLab