We just installed GNU Emacs 19.28 at this site. Some slight change to
the arguments for the mh-forward function of the mhe package breaks
the defadvice in bbdb-mhe.el. I don't quite understand the in's and
out's so if someone has a better fix please post it! Anyway, here is
what I have done to handle it, works okay for me....

192,197c202,208
<   (interactive (list current-prefix-arg
<                    (if current-prefix-arg
<                        (mh-read-seq-default "Forward" t)
<                      (mh-get-msg-num t))
<                    (bbdb-read-addresses-with-completion "To: ")
<                    (bbdb-read-addresses-with-completion "Cc: "))))
---
>   (interactive (list
>               (bbdb-read-addresses-with-completion "To: ")
>               (bbdb-read-addresses-with-completion "Cc: ")
>               (if current-prefix-arg
>                   (mh-read-seq-default "Forward" t)
>                 (mh-get-msg-num t))
>               )))

Aaron.

Reply via email to