From 6d4212f7a80db289ddb0308cb79c5791838f1d36 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Tue, 4 Jun 1991 14:21:17 +0000
Subject: [PATCH] Fixed MAKE-ARRAY :INITIAL-CONTENTS to be a sequence, rather
 than only a list.

---
 compiler/fndb.lisp | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/compiler/fndb.lisp b/compiler/fndb.lisp
index bd24879aa..e8e860393 100644
--- a/compiler/fndb.lisp
+++ b/compiler/fndb.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.23 1991/06/04 00:07:19 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.24 1991/06/04 14:21:17 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -593,8 +593,9 @@
 ;;;; In the "Arrays" chapter:
 
 (defknown make-array ((or index list) &key (element-type type-specifier)
-		      (initial-element t) (initial-contents list) (adjustable t)
-		      (fill-pointer t) (displaced-to (or array null))
+		      (initial-element t) (initial-contents sequence)
+		      (adjustable t) (fill-pointer t)
+		      (displaced-to (or array null))
 		      (displaced-index-offset index))
   array (flushable unsafe))
 
-- 
GitLab