mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-04 20:40:57 +02:00
zsh-workers/8495
This commit is contained in:
parent
6532fa34ba
commit
771c42fdb1
1 changed files with 2 additions and 2 deletions
|
@ -1887,7 +1887,7 @@ add_match_data(int alt, char *str, Cline line,
|
|||
p = bld_parts(ppre, ppl, ppl, &lp);
|
||||
|
||||
if (lp->prefix && !(line->flags & (CLF_SUF | CLF_MID)) &&
|
||||
!p->llen && !p->wlen && !p->olen) {
|
||||
!lp->llen && !lp->wlen && !lp->olen) {
|
||||
Cline lpp;
|
||||
|
||||
for (lpp = lp->prefix; lpp->next; lpp = lpp->next);
|
||||
|
@ -1952,7 +1952,7 @@ add_match_data(int alt, char *str, Cline line,
|
|||
for (p = lp = cp_cline(pline, 1); lp->next; lp = lp->next);
|
||||
|
||||
if (lp->prefix && !(line->flags & (CLF_SUF | CLF_MID)) &&
|
||||
!p->llen && !p->wlen && !p->olen) {
|
||||
!lp->llen && !lp->wlen && !lp->olen) {
|
||||
Cline lpp;
|
||||
|
||||
for (lpp = lp->prefix; lpp->next; lpp = lpp->next);
|
||||
|
|
Loading…
Reference in a new issue