From 5198784138f590b3a1f2dd4b52d7b5aa5f0d372d Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Thu, 10 Feb 1994 22:38:35 +0000 Subject: [PATCH] Changed coerce-to-smallest-eltype to call coerce with a vector type specifier instead of an array type specifier. --- compiler/debug-dump.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/debug-dump.lisp b/compiler/debug-dump.lisp index 820f8b02c..392648997 100644 --- a/compiler/debug-dump.lisp +++ b/compiler/debug-dump.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/debug-dump.lisp,v 1.39 1993/09/10 19:09:07 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/debug-dump.lisp,v 1.40 1994/02/10 22:38:35 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -343,7 +343,7 @@ (frob))))) (if max - (coerce seq `(simple-array (integer 0 ,max))) + (coerce seq `(simple-array (integer 0 ,max) (*))) (coerce seq 'simple-vector)))) -- GitLab