diff lisp/mail/rmail.el @ 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 46b39d9f3ad0
children d2c5d2988a0a
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.