(reported by Josip Gracin)
* bug fix: an error is signaled for attempts to displace arrays with
incompatible element types (thanks to Mario Mommer)
+ * bug fix: more correct handling of wide characters in debug info
+ (bug reported by Attila Lendvai and fixed by Juho Snellman)
* optimization: method calls with &OPTIONAL or &KEY arguments are faster
and don't cause extra consing
* optimization: MAP and MAP-INTO are significantly faster on vectors
`(progn
(loop for i from 0 below ,len
do (setf (aref ,res i)
- (code-char (aref ,vec (+ ,index i)))))
- (incf ,index ,len)
+ (code-char (read-var-integer ,vec ,index))))
,res))))
;;; Write STRING into VEC (adjustable, with fill-pointer) represented
(let ((len (length string)))
(write-var-integer len vec)
(dotimes (i len)
- (vector-push-extend (char-code (schar string i)) vec)))
+ (write-var-integer (char-code (schar string i)) vec)))
(values))
\f
;;;; packed bit vectors
;;; 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.9.18.74"
+"0.9.18.75"