<<< Date Index >>>     <<< Thread Index >>>

Re: [PATCH] minor IMAP improvement, addresses bug #1655



Oops, minor error - that should be '<=' and not '<'.
Please fix in CVS.

Nathan

ps. sorry about the duplicate submission from an address not subscribed to 
the list

On Wed, Jul 21, 2004 at 03:21:49PM -0400, Brendan Cully wrote:
> This makes sense. I think it should be committed. (But if you're going
> to open a 10k message IMAP mailbox, you should probably also be using
> Glanzmann's IMAP header cache patch).
> 
> On Wednesday, 21 July 2004 at 14:53, Nathan Dushman wrote:
> > This is a one-line patch that increases the speed at which mutt opens IMAP 
> > mailboxes, and addresses bug #1655.  Any chance of comitting it?  Thanks,
> > 
> > Nathan
> > 
> > +++ imap/command.c.new       Tue Sep 30 20:43:04 2003
> > @@ -461,6 +461,7 @@
> >  
> >    msgno = atoi (s);
> >    
> > +       if (msgno < idata->ctx->msgcount)
> >    /* see cmd_parse_expunge */
> >    for (cur = 0; cur < idata->ctx->msgcount; cur++)
> >    {