[PATCH] Use the message cite variable instead of a hard coded function

2015-01-08 Thread Todd
--- emacs/notmuch-mua.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/emacs/notmuch-mua.el b/emacs/notmuch-mua.el index 2c58886..e90ca55 100644 --- a/emacs/notmuch-mua.el +++ b/emacs/notmuch-mua.el @@ -220,8 +220,8 @@ list." (date (plist-get

[PATCH] Use the message cite variable instead of a hard coded function

2015-01-08 Thread Todd
--- emacs/notmuch-mua.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/emacs/notmuch-mua.el b/emacs/notmuch-mua.el index 2c58886..e90ca55 100644 --- a/emacs/notmuch-mua.el +++ b/emacs/notmuch-mua.el @@ -220,8 +220,8 @@ list. (date (plist-get

Re: [PATCH] Use the message cite variable instead of a hard coded function

2015-01-08 Thread David Bremner
Todd t...@electricoding.com writes: @@ -233,7 +233,7 @@ list. (set-mark (point)) (goto-char start) ;; Quote the original message according to the user's configured style. - (message-cite-original))) + (funcall message-cite-function))) Hi Todd; Thanks for the