vm team mailing list archive
-
vm team
-
Mailing list archive
-
Message #00952
Re: [Question #142544]: vm-8.0.12 breaks on unparseable addresses
Question #142544 on VM changed:
https://answers.launchpad.net/vm/+question/142544
Uday Reddy posted a new comment:
This is a problem with some versions of Gnu Emacs. The following work-
around, contributed by Manuel Hermenegildo solves the problem. You can
put it in your .emacs file, but remember to take it out when you upgrade
your Emacs version.
;; Fixing temporarily the rfc822-addresses error
(defadvice rfc822-addresses (after rfc822-addresses-fixerror)
"Fixes weird error return in rfc822-addresses."
(setq ad-return-value
(if (listp ad-return-value)
ad-return-value
(list ad-return-value)
)))
(ad-activate 'rfc822-addresses)
--
You received this question notification because you are a member of VM
development team, which is an answer contact for VM.