TYPEP the latter but not the former.
* compiler issues a full WARNING on calling of an undefined function
with a name from the CL package.
- * MAP-INTO for a vector destination is open coded. (reported by
+ * MAP-INTO for a vector destination is open coded. (reported by
Brian Downing on c.l.l)
* fixed some bugs revealed by Paul Dietz' test suite:
** COPY-ALIST now signals an error if its argument is a dotted
in question is unbound;
** optimized MAKE-INSTANCE functions no longer cause internal
assertion failures in the presence of duplicate initargs;
+ ** SLOT-MAKUNBOUND returns the instance acted upon, not NIL;
planned incompatible changes in 0.8.x:
* (not done yet, but planned:) When the profiling interface settles
`(aref (the ,',type ,a) ,@i))
(define-source-transform ,setter (a &rest i)
`(%aset (the ,',type ,a) ,@i)))))
- (define-frob svref %svset simple-vector)
- (define-frob schar %scharset simple-string)
- (define-frob char %charset string)
(define-frob sbit %sbitset (simple-array bit))
(define-frob bit %bitset (array bit)))
+(macrolet ((define-frob (reffer setter type)
+ `(progn
+ (define-source-transform ,reffer (a i)
+ `(aref (the ,',type ,a) ,i))
+ (define-source-transform ,setter (a i v)
+ `(%aset (the ,',type ,a) ,i ,v)))))
+ (define-frob svref %svset simple-vector)
+ (define-frob schar %scharset simple-string)
+ (define-frob char %charset string))
(macrolet (;; This is a handy macro for computing the row-major index
;; given a set of indices. We wrap each index with a call
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.pre8.113"
+"0.pre8.114"