Remove two more uses of (truly-the cons)

This commit is contained in:
Juan Jose Garcia Ripoll 2012-11-30 11:21:26 +01:00
parent 331b892d34
commit 2e77344a54

View file

@ -136,7 +136,7 @@ INDEXes must be equal to the rank of ARRAY."
(do* ((r (array-rank array))
(i 0 (1+ i))
(j 0)
(s indices (cdr (truly-the cons s))))
(s indices (cons-cdr s)))
((null s)
(when (< i r)
(indexing-error array indices))
@ -144,7 +144,7 @@ INDEXes must be equal to the rank of ARRAY."
(declare (ext:array-index j)
(fixnum i r))
(let* ((d (array-dimension array i))
(o (car (truly-the cons s)))
(o (cons-car s))
ndx)
(declare (ext:array-index ndx))
(unless (and (typep o 'fixnum)