(wl-draft-reply): Fixed problem when mail-followup-to contains an
authorteranisi <teranisi>
Wed, 19 Jul 2000 04:10:42 +0000 (04:10 +0000)
committerteranisi <teranisi>
Wed, 19 Jul 2000 04:10:42 +0000 (04:10 +0000)
address which is not included in original to or cc.

wl/wl-draft.el

index b4bfba4..a9f7cfd 100644 (file)
@@ -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))