# HG changeset patch # User Richard M. Stallman # Date 854824489 0 # Node ID 78616adde9084167b25f8e58c21b134b74d37ca7 # Parent 9e1fac479bed53f7bb75cca496d2057402d2e6ff (rmail-reply): Concatenate all the References headers. diff -r 9e1fac479bed -r 78616adde908 lisp/mail/rmail.el --- a/lisp/mail/rmail.el Sat Feb 01 02:19:14 1997 +0000 +++ b/lisp/mail/rmail.el Sat Feb 01 19:14:49 1997 +0000 @@ -2306,10 +2306,8 @@ (if msgnum (rmail-set-attribute "answered" t msgnum))))))) nil - (cons (cons "References" message-id) - (mapcar (function (lambda (elt) - (cons "References" elt))) - references))) + (list (cons "References" (concat (mapconcat 'identity references " ") + " " message-id)))) ;; We keep the rmail buffer and message number in these ;; buffer-local vars in the sendmail buffer, ;; so that rmail-only-expunge can relocate the message number.