Raymond Toy writes:
A colleague of mine noticed that in the latest versions of tm (1.15)
and vm (1.14), there's a small bug. tm-vm uses vm-sprintf, but that
no longer exists in vm. Can vm-summary-sprintf be used instead?
Not without some modifications, as the parameter list for
vm-summary-sprintf is different than vm-sprintf. This will
probably work:
(defun vm-sprintf (var msg &optional tok)
(vm-summary-sprintf (symbol-value var) msg tok))