+2007-11-21 14:14 -0800 Ronny Haryanto <ronnylist@haryan.to> (0e99eaaecd67)
+
+ * po/id.po: Updated Indonesian translation
+
+2007-11-21 16:47 +0100 Rocco Rutte <pdmef@gmx.net> (309ab3a63d91)
+
+ * ChangeLog, UPDATING: Add UPDATING entry for $check_mbox_size
+
2007-11-21 14:46 +0100 Rocco Rutte <pdmef@gmx.net> (b8d811e5931e)
* init.h: Clarify the description for $timeout
snprintf (progress->sizestr, sizeof (progress->sizestr), "%ld",
progress->size);
}
+ if (!inc)
+ {
+ if (size)
+ mutt_message ("%s (%s)", msg, progress->sizestr);
+ else
+ mutt_message (msg);
+ return;
+ }
if (gettimeofday (&tv, NULL) < 0)
dprint (1, (debugfile, "gettimeofday failed: %d\n", errno));
/* if timestamp is 0 no time-based suppression is done */
struct timeval tv = { 0, 0 };
unsigned int now = 0;
- if (pos && !progress->inc)
- return;
+ if (!progress->inc)
+ goto out;
/* refresh if size > inc */
if (progress->flags & M_PROGRESS_SIZE &&
}
}
+out:
if (pos >= progress->size)
mutt_clear_error ();
}