From f4dc65143f0261fb0a5a3a92882f000275ffaf77 Mon Sep 17 00:00:00 2001 From: keiichi Date: Tue, 25 Dec 2001 03:39:29 +0000 Subject: [PATCH] (message-cancel-news): Could not cancel article, fixed. --- lisp/message.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lisp/message.el b/lisp/message.el index 8a4f9cc..0f1eeaf 100644 --- a/lisp/message.el +++ b/lisp/message.el @@ -4172,8 +4172,11 @@ If ARG, allow editing of the cancellation message." (unless arg (message "Canceling your article...") (if (let ((message-syntax-checks - 'dont-check-for-anything-just-trust-me)) - (funcall message-send-news-function)) + 'dont-check-for-anything-just-trust-me) + (method (if (message-functionp message-post-method) + (funcall message-post-method arg) + message-post-method))) + (funcall message-send-news-function method)) (message "Canceling your article...done")) (kill-buffer buf)))))) -- 1.7.10.4