VM

mapvector not present in vm-8.0.13-devo-625

Bug #338491 reported by Manuel Carro
2
Affects Status Importance Assigned to Milestone
VM
Fix Released
Undecided
Unassigned

Bug Description

vm-8.0.13-devo-625 checked out from bazaar; installed to be used with emacs-snapshot under Ubuntu 8.10 (GNU Emacs 23.0.60.1 (i486-pc-linux-gnu, GTK+ Version 2.14.3) of 2008-10-13 on rothera, modified by Debian). Saving folders impossible as mapvector (used in vm-folder.el) does not seem to be available. Worked around by defining

(defun mapvector (fun v)
    (let ((l (length v)))
        (mapvector_l (- l 1) fun v (make-vector l nil))))

(defun mapvector_l (ind fun in out)
    (if (< ind 0)
        out
        (progn
            (aset out ind (funcall fun (aref in ind)))
            (mapvector_l (- ind 1) fun in out)
        )
    )
)

and adding it to my personal emacs files.

Uday Reddy (reddyuday)
Changed in viewmail:
status: New → In Progress
Uday Reddy (reddyuday)
Changed in viewmail:
status: In Progress → Fix Committed
Uday Reddy (reddyuday)
Changed in vm:
status: New → Fix Released
Changed in viewmail:
status: Fix Committed → Fix Released
Changed in vm:
milestone: none → 8.0.13
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.