From 1218fa1340af24c4587e6f6012f224a4dce8ca53 Mon Sep 17 00:00:00 2001 From: hmurata Date: Wed, 7 Jan 2004 23:59:23 +0000 Subject: [PATCH] * wl-action.el (wl-summary-refile-prev-destination): Avoid warning. --- wl/ChangeLog | 4 ++++ wl/wl-action.el | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/wl/ChangeLog b/wl/ChangeLog index 26cd807..10834c6 100644 --- a/wl/ChangeLog +++ b/wl/ChangeLog @@ -1,3 +1,7 @@ +2004-01-07 Hiroya Murata + + * wl-action.el (wl-summary-refile-prev-destination): Avoid warning. + 2004-01-07 Yoichi NAKAYAMA * wl-action.el (wl-summary-set-action-refile): Don't proceed if diff --git a/wl/wl-action.el b/wl/wl-action.el index 980be79..e164137 100644 --- a/wl/wl-action.el +++ b/wl/wl-action.el @@ -784,8 +784,9 @@ Return number if put mark succeed" (defun wl-summary-refile-prev-destination () "Refile message to previously refiled destination." (interactive) - (wl-summary-refile (wl-summary-message-number) - wl-summary-buffer-prev-refile-destination) + (funcall (symbol-function 'wl-summary-refile) + (wl-summary-message-number) + wl-summary-buffer-prev-refile-destination) (if (and (interactive-p) (eq wl-summary-move-direction-downward nil)) (wl-summary-prev) -- 1.7.10.4