From 3cb1a5e0738baeed48403a85a8637193cf02a182 Mon Sep 17 00:00:00 2001 From: djcb Date: Sat, 16 Jun 2012 08:38:00 +0300 Subject: [PATCH] * mu4e-compose.el: remove some debug crap --- emacs/mu4e-compose.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/emacs/mu4e-compose.el b/emacs/mu4e-compose.el index 3bdea7f9..1af67263 100644 --- a/emacs/mu4e-compose.el +++ b/emacs/mu4e-compose.el @@ -107,11 +107,10 @@ such all its settings apply." (insert (mu4e-view-message-text msg)) (goto-char (point-min)) (push-mark (point-max)) - (funcall message-cite-function) + (funcall message-cite-function) (pop-mark) (buffer-string)))) - (defun mu4e~compose-header (hdr val) "Return a header line of the form HDR: VAL\n. If VAL is nil, return nil." @@ -163,7 +162,6 @@ e-mail addresses. If LST is nil, returns nil." the original message ORIGMSG. If the Reply-To address is set, use that, otherwise use the From address. Note, whatever was in the To: field before, goes to the Cc:-list (if we're doing a reply-to-all)." - (message "REPLY TO %S" (plist-get origmsg :reply-to)) (let ((reply-to (or (plist-get origmsg :reply-to) (plist-get origmsg :from)))) (delete-duplicates reply-to :test #'mu4e~compose-address-cell-equal)))