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

2015-01-09 Thread Tomi Ollila
On Fri, Jan 09 2015, Todd wrote: > It's defaulted to message-cite-original in Emacs 24, and may have been > back to Emacs 22.3 ("This variable was introduced, or its default value > was changed, in version 22.3 of Emacs."). > > I can re-work the patch to fall back to message-cite-original if

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

2015-01-09 Thread David Bremner
Todd 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 patch. What

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

2015-01-09 Thread Todd
It's defaulted to message-cite-original in Emacs 24, and may have been back to Emacs 22.3 ("This variable was introduced, or its default value was changed, in version 22.3 of Emacs."). I can re-work the patch to fall back to message-cite-original if it's been unset, if that's preferred. -

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

2015-01-09 Thread Tomi Ollila
On Fri, Jan 09 2015, Todd tol...@gmail.com wrote: It's defaulted to message-cite-original in Emacs 24, and may have been back to Emacs 22.3 (This variable was introduced, or its default value was changed, in version 22.3 of Emacs.). I can re-work the patch to fall back to

[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