From d238d186ce2667d33f59344d4d6c6c98963190df Mon Sep 17 00:00:00 2001 From: djcb Date: Sat, 16 Jun 2012 08:57:13 +0300 Subject: [PATCH] * mu4e-compose.el: strip existing signatures from replies --- emacs/mu4e-compose.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/emacs/mu4e-compose.el b/emacs/mu4e-compose.el index 1af67263..ef5a6fc3 100644 --- a/emacs/mu4e-compose.el +++ b/emacs/mu4e-compose.el @@ -105,6 +105,9 @@ such all its settings apply." (with-temp-buffer (when (fboundp 'mu4e-view-message-text) ;; keep bytecompiler happy (insert (mu4e-view-message-text msg)) + ;; this seems to be needed, otherwise existing signatures + ;; won't be stripped + (message-yank-original) (goto-char (point-min)) (push-mark (point-max)) (funcall message-cite-function)