((VECTOR SIMPLE-VECTOR #+unicode SIMPLE-BASE-STRING SIMPLE-STRING #+unicode BASE-STRING STRING BIT-VECTOR SIMPLE-BIT-VECTOR)
(concatenate type object))
(t
- (if (or (listp object) (vector object))
+ (if (or (listp object) (vectorp object))
(concatenate type object)
(error-coerce object type)))))
((eq (setq aux (first type)) 'COMPLEX)
(unless (typep aux type)
(error-coerce object type))
aux)
- ((or (listp object) (vector object))
+ ((or (listp object) (vectorp object))
(concatenate type object))
(t
(error-coerce object type))))