Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Has anybody collected bug fixes since release 8.0.12??

0 views
Skip to first unread message

blueman

unread,
Nov 22, 2009, 4:05:35 AM11/22/09
to
Just want to make sure I have the latest and greatest...

Uday S Reddy

unread,
Nov 22, 2009, 5:24:50 AM11/22/09
to
blueman wrote:
> Just want to make sure I have the latest and greatest...

I think 8.0.12 is definitely broken in its treatment of v5-Data headers
and international characters. If you want to stick to 8.0.x for now,
your best bet is to pull the latest revision from Rob's 8.0.x branch
through bazaar, and add my mapvector procedure.

I am reproducing the mapvector procedure again:

(defun mapvector (proc vec)
(let ((new-vec (make-vector (length vec) nil))
(i 0)
(n (length vec)))
(while (< i n)
(aset new-vec i (apply proc (aref vec i) nil))
(setq i (1+ i)))
new-vec))

You can put it anywhere, even in your .emacs file.

Cheers,
Uday

0 new messages