From fb8c36ec7a04439c866e4ac9f58bc106984e50e9 Mon Sep 17 00:00:00 2001 From: djcb Date: Fri, 16 Mar 2012 20:39:40 +0200 Subject: [PATCH] * mu4e-send: leave the \n when removing the message/body separator --- emacs/mu4e-send.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs/mu4e-send.el b/emacs/mu4e-send.el index 9a04432e..1b1b125a 100644 --- a/emacs/mu4e-send.el +++ b/emacs/mu4e-send.el @@ -379,7 +379,7 @@ using Gnus' `message-mode'." (save-excursion (goto-char (point-min)) ;; remove the --text follows this line-- separator - (if (search-forward-regexp (concat "^" mail-header-separator "\n")) + (if (search-forward-regexp (concat "^" mail-header-separator)) (replace-match "") (error "cannot find mail-header-separator")) (save-buffer)