From 4ced0bceb5d092a8b1f63213506b494aa112dd70 Mon Sep 17 00:00:00 2001 From: teranisi Date: Wed, 19 Jul 2000 04:10:42 +0000 Subject: [PATCH] (wl-draft-reply): Fixed problem when mail-followup-to contains an address which is not included in original to or cc. --- wl/wl-draft.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wl/wl-draft.el b/wl/wl-draft.el index b4bfba4..a9f7cfd 100644 --- a/wl/wl-draft.el +++ b/wl/wl-draft.el @@ -403,7 +403,8 @@ the `wl-smtp-features' variable." (mapconcat '(lambda (addr) (if wl-draft-reply-use-address-with-full-name - (cdr (assoc addr addr-alist)) + (or (cdr (assoc addr addr-alist)) + addr) addr)) mail-followup-to ",\n\t"))) (and (null to) (setq to cc cc nil)) -- 1.7.10.4