diff options
| -rw-r--r-- | lisp/mail/sendmail.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 61c0de48613..52a9abefe65 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el | |||
| @@ -213,7 +213,12 @@ actually occur.") | |||
| 213 | (insert cc "\n") | 213 | (insert cc "\n") |
| 214 | (fill-region-as-paragraph address-start (point-max)))) | 214 | (fill-region-as-paragraph address-start (point-max)))) |
| 215 | (if in-reply-to | 215 | (if in-reply-to |
| 216 | (insert "In-reply-to: " in-reply-to "\n")) | 216 | (let ((fill-prefix "\t") |
| 217 | address-start) | ||
| 218 | (insert "In-reply-to: ") | ||
| 219 | (setq address-start (point)) | ||
| 220 | (insert in-reply-to "\n") | ||
| 221 | (fill-region-as-paragraph address-start (point-max)))) | ||
| 217 | (insert "Subject: " (or subject "") "\n") | 222 | (insert "Subject: " (or subject "") "\n") |
| 218 | (if mail-default-headers | 223 | (if mail-default-headers |
| 219 | (insert mail-default-headers)) | 224 | (insert mail-default-headers)) |