mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(rmail-reply): If no resent-date, use ordinary date.
If no resent-to, use empty string for to.
This commit is contained in:
parent
384fc6ca30
commit
1f780b790f
1 changed files with 4 additions and 4 deletions
|
|
@ -1740,11 +1740,11 @@ use \\[mail-yank-original] to yank the original message into it."
|
|||
subject (or (and resent-reply-to
|
||||
(mail-fetch-field "resent-subject" t))
|
||||
(mail-fetch-field "subject"))
|
||||
date (cond (resent-reply-to
|
||||
(mail-fetch-field "resent-date" t))
|
||||
((mail-fetch-field "date")))
|
||||
date (or (and resent-reply-to
|
||||
(mail-fetch-field "resent-date" t))
|
||||
(mail-fetch-field "date"))
|
||||
to (cond (resent-reply-to
|
||||
(mail-fetch-field "resent-to" t))
|
||||
(or (mail-fetch-field "resent-to" t)) "")
|
||||
((mail-fetch-field "to" nil t))
|
||||
;((mail-fetch-field "apparently-to")) ack gag barf
|
||||
(t ""))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue