From 0f0a85b310ae2016c91153fd69e6fdff8b5e72a1 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 15 Sep 1993 22:59:12 +0000 Subject: [PATCH] (rmail-forward): Insert the text right after the header separator. --- lisp/mail/rmail.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 9ab9c86f11f..096723725d6 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -1829,7 +1829,8 @@ see the documentation of `rmail-resend'." (current-buffer) rmail-current-message))) (save-excursion - (goto-char (point-max)) + ;; Insert after header separator--before signature if any. + (search-forward-regexp (concat "^" mail-header-separator)) (forward-line 1) (insert-buffer forward-buffer)))))) -- 2.39.5