Version number is increased to 2.11.26.
[elisp/wanderlust.git] / wl / wl-dnd.el
index e242754..10a3502 100644 (file)
@@ -1,6 +1,6 @@
-;;; wl-dnd.el -- dragdrop support on Wanderlust.
+;;; wl-dnd.el --- dragdrop support on Wanderlust.
 
-;; Copyright 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
+;; Copyright (C) 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
 
 ;; Author: Yuuichi Teranishi <teranisi@gohome.org>
 ;; Keywords: mail, net news
 ;;
 
 ;;; Commentary:
-;; 
+;;
 
 ;;; Code:
-;; 
-
-(require 'product)
-(product-provide (provide 'wl-dnd) (require 'wl-version))
+;;
 
 (static-cond
  ((featurep 'offix)
@@ -74,7 +71,7 @@
       (set-buffer (wl-summary-get-buffer src-fld))
       (save-match-data
        (wl-summary-jump-to-msg number))
-      (wl-summary-refile target number)
+      (funcall (symbol-function 'wl-summary-refile) number target)
       (select-window (get-buffer-window (current-buffer)))
       ))
   t)
@@ -99,5 +96,8 @@
     (setq kmap (make-keymap))
     (define-key kmap [button1] 'wl-dnd-start-drag)
     (set-extent-property ext 'keymap kmap)))
-                                            
+
+(require 'product)
+(product-provide (provide 'wl-dnd) (require 'wl-version))
+
 ;;; wl-dnd.el ends here