Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: zsh 4.2.0 dumping core on completion attempt
- X-seq: zsh-workers 20002
- From: Felix Rosencrantz <f_rosencrantz@xxxxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: Re: zsh 4.2.0 dumping core on completion attempt
- Date: Wed, 2 Jun 2004 00:58:47 -0700 (PDT)
- In-reply-to: <20040601071634.55178.qmail@xxxxxxxxxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
I think this is the patch to fix the problem, cmp_anchors causes the clines to
become inconsistent. It eventually bites itself.
-FR.
--- compmatch.c Wed Jun 2 00:47:52 2004
***************
*** 1398,1404 ****
if (line) {
o->flags |= CLF_LINE;
o->word = NULL;
! n->wlen = 0;
}
return 1;
}
--- 1398,1404 ----
if (line) {
o->flags |= CLF_LINE;
o->word = NULL;
! o->wlen = 0;
}
return 1;
}
__________________________________
Do you Yahoo!?
Friends. Fun. Try the all-new Yahoo! Messenger.
http://messenger.yahoo.com/
Messages sorted by:
Reverse Date,
Date,
Thread,
Author