]> git.notmuchmail.org Git - notmuch/commitdiff
Put signatures at the very end of the message
authorDirk Hohndel <hohndel@infradead.org>
Mon, 26 Apr 2010 17:41:49 +0000 (10:41 -0700)
committerCarl Worth <cworth@cworth.org>
Mon, 26 Apr 2010 23:37:47 +0000 (16:37 -0700)
The existing code inserts the signature before inserting the message
body (which it puts at the very end of the buffer - therefore AFTER
the signature). This little snippet makes us search backwards and
insert the message body before a signature, if it exists.

This also fixes a small indentation issue in David's code.

Signed-off-by: Dirk Hohndel <hohndel@infradead.org>
emacs/notmuch-mua.el

index c7a9aee0aa67b471e7a5c346f9bf0297652dfd51..9fbb94a668342f06821597d8d4c50fe509fa9ef4 100644 (file)
@@ -98,11 +98,16 @@ list."
                              collect header)))
     (message-sort-headers)
     (message-hide-headers)
+    ;; insert the message body - but put it in front of the signature
+    ;; if one is present
     (goto-char (point-max))
+    (if (re-search-backward "-- " nil t)
+         (forward-line -1)
+      (goto-char (point-max)))
     (insert body))
-    (set-buffer-modified-p nil)
+  (set-buffer-modified-p nil)
 
-    (message-goto-body))
+  (message-goto-body))
 
 (defun notmuch-mua-forward-message ()
   (message-forward)