From 74ab65aced1e28c81f99c9c87b237d859e6c068d Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Wed, 14 Mar 1990 23:54:33 +0000 Subject: [PATCH] In COERCE-TO-SMALLEST-ELTYPE, coerce to a SIMPLE-ARRAY, not just a VECTOR. --- compiler/debug-dump.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/debug-dump.lisp b/compiler/debug-dump.lisp index 32b5d81b7..da2a180ec 100644 --- a/compiler/debug-dump.lisp +++ b/compiler/debug-dump.lisp @@ -263,7 +263,7 @@ (frob))))) (if max - (coerce seq `(vector (integer 0 ,max))) + (coerce seq `(simple-array (integer 0 ,max))) (coerce seq 'simple-vector)))) -- GitLab