branch: elpa/org-mime
commit d7a5626ef9cec0b679b123aa074758831a0a3e2e
Merge: 743c411133e 0b32455a183
Author: Chen Bin <[email protected]>
Commit: GitHub <[email protected]>

    Merge pull request #102 from krisbalintona/krisbalintona/push-zorlwkuzouvr
    
    fix: Saving in the org-mime org buffer no longer duplicates text
---
 org-mime.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/org-mime.el b/org-mime.el
index 7d564c064fc..22ab4eae506 100644
--- a/org-mime.el
+++ b/org-mime.el
@@ -878,7 +878,7 @@ Following headline properties can determine the mail 
headers.
    (t
     (setq org-mime--saved-temp-window-config (current-window-configuration))
     (let* ((beg (copy-marker (org-mime-mail-body-begin)))
-           (end (copy-marker (or (org-mime-mail-signature-begin) (point-max))))
+           (end (copy-marker (or (org-mime-mail-signature-begin) (point-max)) 
t))
            (bufname "OrgMimeMailBody")
            (buffer (generate-new-buffer bufname))
            (overlay (org-mime-src--make-source-overlay beg end))

Reply via email to