changeset 16958:78616adde908

(rmail-reply): Concatenate all the References headers.
author Richard M. Stallman <rms@gnu.org>
date Sat, 01 Feb 1997 19:14:49 +0000
parents 9e1fac479bed
children d04999ad25b9
files lisp/mail/rmail.el
diffstat 1 files changed, 2 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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.