From: David Edmondson Date: Tue, 25 Sep 2018 15:09:10 +0000 (+0100) Subject: emacs: Call `notmuch-mua-send-hook' hooks when sending a message X-Git-Tag: debian/0.28_rc0-1~5 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=e8cb6b2cd63c9ea8a011cb9f672baf04b4c14f7b emacs: Call `notmuch-mua-send-hook' hooks when sending a message Previously any hook functions attached to `notmuch-mua-send-hook' were ignored. --- diff --git a/emacs/notmuch-mua.el b/emacs/notmuch-mua.el index fc8ac687..df2ac447 100644 --- a/emacs/notmuch-mua.el +++ b/emacs/notmuch-mua.el @@ -543,6 +543,7 @@ unencrypted. Really send? ")))) (defun notmuch-mua-send-common (arg &optional exit) (interactive "P") + (run-hooks 'notmuch-mua-send-hook) (when (and (notmuch-mua-check-no-misplaced-secure-tag) (notmuch-mua-check-secure-tag-has-newline)) (letf (((symbol-function 'message-do-fcc) #'notmuch-maildir-message-do-fcc)) diff --git a/test/T310-emacs.sh b/test/T310-emacs.sh index d743abb7..5935819f 100755 --- a/test/T310-emacs.sh +++ b/test/T310-emacs.sh @@ -1107,7 +1107,6 @@ output=$(test_emacs "(mapcar 'notmuch-escape-boolean-term (list test_expect_equal "$output" '("\"\"" "abc`~!@#$%^&*-=_+123" "\"(abc\"" "\")abc\"" "\"\"\"abc\"" "\"'$'\x01''xyz\"" "\"“xyz”\"")' test_begin_subtest "Sending a message calls the send message hooks" -test_subtest_known_broken emacs_deliver_message \ 'Testing message sending hooks' \ 'This is a test of the message sending hooks.' \