mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 18:40:39 -08:00
(mail-setup): Fill the in-reply-to field.
This commit is contained in:
parent
8851c1f036
commit
9171f37fd2
1 changed files with 6 additions and 1 deletions
|
|
@ -213,7 +213,12 @@ actually occur.")
|
|||
(insert cc "\n")
|
||||
(fill-region-as-paragraph address-start (point-max))))
|
||||
(if in-reply-to
|
||||
(insert "In-reply-to: " in-reply-to "\n"))
|
||||
(let ((fill-prefix "\t")
|
||||
address-start)
|
||||
(insert "In-reply-to: ")
|
||||
(setq address-start (point))
|
||||
(insert in-reply-to "\n")
|
||||
(fill-region-as-paragraph address-start (point-max))))
|
||||
(insert "Subject: " (or subject "") "\n")
|
||||
(if mail-default-headers
|
||||
(insert mail-default-headers))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue