+2001-10-06 Hiroya Murata <lapis-lazuli@pop06.odn.ne.jp>
+
+ * wl-summary.el (wl-summary-exec-subr): Setup and clear progress
+ counter.
+
2001-10-05 Yoichi NAKAYAMA <yoichi@eken.phys.nagoya-u.ac.jp>
* wl-draft.el (wl-draft): Make truncate-partial-width-windows
before call `get-buffer'. Fixed parenthesis.
(wl-score-get-header-entry): Clear message and help window when
keyboard quit.
- (wl-score-edit-insert-header): Ditto.
+ (wl-score-edit-insert-header): Ditto.
2001-07-14 Yuuichi Teranishi <teranisi@gohome.org>
(wl-inverse-alist refiles wl-summary-buffer-refile-list))
(goto-char start) ; avoid moving cursor to
; the bottom line.
+ (when (> refile-len elmo-display-progress-threshold)
+ (elmo-progress-set 'elmo-folder-move-messages
+ refile-len "Moving messages..."))
(while dst-msgs
(setq result nil)
(condition-case nil
(+ 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
;; begin cOpy...
(setq dst-msgs (wl-inverse-alist copies wl-summary-buffer-copy-list))
+ (when (> copy-len elmo-display-progress-threshold)
+ (elmo-progress-set 'elmo-folder-move-messages
+ copy-len "Copying messages..."))
(while dst-msgs
(setq result nil)
(condition-case nil
(setq copy-executed (+ copy-executed (length (cdr (car dst-msgs)))))
(setq dst-msgs (cdr dst-msgs)))
;; Hide progress bar.
- (elmo-display-progress 'elmo-folder-move-messages "" 100)
+ (elmo-progress-clear 'elmo-folder-move-messages)
;; end cOpy
(wl-summary-folder-info-update)
(wl-summary-set-message-modified)