* elmo.el (elmo-folder-move-messages): Removed arguments `all' and
authorhmurata <hmurata>
Mon, 8 Oct 2001 08:31:33 +0000 (08:31 +0000)
committerhmurata <hmurata>
Mon, 8 Oct 2001 08:31:33 +0000 (08:31 +0000)
`done'.

* wl-expire.el (wl-expire-refile): Remove ALL and DONE arguments
from `elmo-folder-move-messages' caller.
(wl-expire-refile-with-copy-reserve-msg): Ditto.

* wl-summary.el (wl-summary-exec-subr): Likewise (All other
related portions are changed).

elmo/ChangeLog
elmo/elmo.el
wl/ChangeLog
wl/wl-expire.el
wl/wl-summary.el

index 9f2d3f2..2a85cc0 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-08  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
+
+       * elmo.el (elmo-folder-move-messages): Removed arguments `all' and
+       `done'.
+
 2001-10-06  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
 
        * elmo-util.el (elmo-progress-counter-alist): New internal
index a8e1d62..26a3875 100644 (file)
@@ -904,7 +904,7 @@ Return a cons cell of (NUMBER-CROSSPOSTS . NEW-MARK-ALIST).")
 
 ;; Arguments should be reduced.
 (defun elmo-folder-move-messages (src-folder msgs dst-folder
-                                            &optional msgdb all done
+                                            &optional msgdb
                                             no-delete-info
                                             no-delete
                                             same-number
index f20f752..fd4d42c 100644 (file)
@@ -1,3 +1,12 @@
+2001-10-08  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
+
+       * wl-expire.el (wl-expire-refile): Remove ALL and DONE arguments
+       from `elmo-folder-move-messages' caller.
+       (wl-expire-refile-with-copy-reserve-msg): Ditto.
+
+       * wl-summary.el (wl-summary-exec-subr): Likewise (All other
+       related portions are changed).
+
 2001-10-06  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
 
        * wl-summary.el (wl-summary-exec-subr): Setup and clear progress
index 755221f..0537bb7 100644 (file)
                                         refile-list
                                         dst-folder
                                         msgdb
-                                        nil nil t
+                                        t
                                         copy
                                         preserve-number
                                         nil
@@ -182,7 +182,7 @@ If REFILE-LIST includes reserve mark message, so copy."
          (setq copy-len (length refile-list))
        (unless (or (elmo-folder-exists-p dst-folder)
                  (elmo-folder-create dst-folder))
-       (error "%s: create folder failed" (elmo-folder-name-internal 
+       (error "%s: create folder failed" (elmo-folder-name-internal
                                           dst-folder)))
        (while (setq msg (wl-pop msglist))
          (unless (wl-expire-msg-p msg mark-alist)
@@ -202,12 +202,11 @@ If REFILE-LIST includes reserve mark message, so copy."
                                               refile-list
                                               dst-folder
                                               msgdb
-                                              nil nil t
+                                              t
                                               copy-reserve-message
                                               preserve-number
                                               nil
-                                              wl-expire-add-seen-list
-                                              ))
+                                              wl-expire-add-seen-list))
            (error "Expire: move msgs to %s failed"
                   (elmo-folder-name-internal dst-folder)))
          (wl-expire-append-log (elmo-folder-name-internal folder)
index 02fcdfa..4083720 100644 (file)
@@ -3095,9 +3095,7 @@ If optional argument NUMBER is specified, mark message specified by NUMBER."
                                wl-summary-unread-uncached-mark
                                wl-summary-new-mark))
            (refiles (append moves dels))
-           (refile-executed 0)
            (refile-failures 0)
-           (copy-executed 0)
            (copy-failures 0)
            (copy-len (length copies))
            refile-len
@@ -3131,8 +3129,6 @@ If optional argument NUMBER is specified, mark message specified by NUMBER."
                              (wl-folder-get-elmo-folder
                               (car (car dst-msgs))))
                            (wl-summary-buffer-msgdb)
-                           refile-len
-                           refile-executed
                            (not (null (cdr dst-msgs)))
                            nil ; no-delete
                            nil ; same-number
@@ -3149,7 +3145,6 @@ If optional argument NUMBER is specified, mark message specified by NUMBER."
                                              wl-summary-buffer-refile-list)))
            (setq refile-failures
                  (+ refile-failures (length (cdr (car dst-msgs))))))
-         (setq refile-executed (+ refile-executed (length (cdr (car dst-msgs)))))
          (setq dst-msgs (cdr dst-msgs)))
        (elmo-progress-clear 'elmo-folder-move-messages)
        ;; end refile
@@ -3167,8 +3162,6 @@ If optional argument NUMBER is specified, mark message specified by NUMBER."
                            (wl-folder-get-elmo-folder
                             (car (car dst-msgs)))
                            (wl-summary-buffer-msgdb)
-                           copy-len
-                           copy-executed
                            (not (null (cdr dst-msgs)))
                            t ; t is no-delete (copy)
                            nil ; same number
@@ -3185,7 +3178,6 @@ If optional argument NUMBER is specified, mark message specified by NUMBER."
                                              wl-summary-buffer-copy-list)))
            (setq copy-failures
                  (+ copy-failures (length (cdr (car dst-msgs))))))
-         (setq copy-executed (+ copy-executed (length (cdr (car dst-msgs)))))
          (setq dst-msgs (cdr dst-msgs)))
        ;; Hide progress bar.
        (elmo-progress-clear 'elmo-folder-move-messages)