diff --git a/code/array.lisp b/code/array.lisp index 0ed77832899698f3ca92b4673b9fdd04399a61b2..e0c906189861e7a68c89aad27273fe7aa98e1bb3 100644 --- a/code/array.lisp +++ b/code/array.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/array.lisp,v 1.40 2006/06/30 18:41:22 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/array.lisp,v 1.41 2007/01/11 22:11:08 fgilham Exp $") ;;; ;;; ********************************************************************** ;;; @@ -670,7 +670,7 @@ (let ((fill-pointer (fill-pointer array))) (declare (fixnum fill-pointer)) (when (= fill-pointer (%array-available-elements array)) - (adjust-array array (+ fill-pointer extension))) + (setf array (adjust-array array (+ fill-pointer extension)))) (setf (aref array fill-pointer) new-el) (setf (%array-fill-pointer array) (1+ fill-pointer)) fill-pointer))