Start immediately.
This commit is contained in:
parent
6c5f6b7119
commit
cb648b260d
1 changed files with 4 additions and 1 deletions
|
@ -91,6 +91,7 @@
|
|||
(define (load-mailman-lists)
|
||||
(with-progress%
|
||||
#t "Mailman"
|
||||
(progress%-advance 0)
|
||||
(let* ((lists (list-mailman-lists))
|
||||
(total (length lists)))
|
||||
(let loop ((lsts lists)
|
||||
|
@ -99,7 +100,9 @@
|
|||
(if (null? lsts)
|
||||
(let ()
|
||||
(progress%-advance 1)
|
||||
(reverse res))
|
||||
;; Will be prepended, therefore reversing result is a
|
||||
;; bad idea!
|
||||
res)
|
||||
(let ((mln (car lsts)))
|
||||
(progress%-advance (/ idx total))
|
||||
(loop (cdr lsts)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue