From: Chris Hanson <org/chris-hanson/cph>
Date: Mon, 19 Mar 2001 22:26:01 +0000 (+0000)
Subject: Slow down the progress messages a bit; the parsing is now fast enough
X-Git-Tag: 20090517-FFI~2886
X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=e96421c0b043a93c1e44e612f994b9073041e1f4;p=mit-scheme.git

Slow down the progress messages a bit; the parsing is now fast enough
that we were doing too much work updating the screen.
---

diff --git a/v7/src/imail/imail-rmail.scm b/v7/src/imail/imail-rmail.scm
index 77bc2c25e..332224452 100644
--- a/v7/src/imail/imail-rmail.scm
+++ b/v7/src/imail/imail-rmail.scm
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: imail-rmail.scm,v 1.58 2001/03/19 22:14:47 cph Exp $
+;;; $Id: imail-rmail.scm,v 1.59 2001/03/19 22:26:01 cph Exp $
 ;;;
 ;;; Copyright (c) 1999-2001 Massachusetts Institute of Technology
 ;;;
@@ -125,7 +125,7 @@
     (lambda (port)
       (set-rmail-folder-header-fields! folder (read-rmail-prolog port))
       (let loop ((line #f) (index 0) (messages '()))
-	(if (= 0 (remainder index 10))
+	(if (= 0 (remainder index 100))
 	    (imail-ui:progress-meter index #f))
 	(call-with-values (lambda () (read-rmail-message folder port line))
 	  (lambda (message line)