mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-12 01:11:27 +02:00
join_clines() tested the wrong variable (10798)
This commit is contained in:
parent
4f1424edb2
commit
145e7ee76f
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2000-04-18 Sven Wischnowsky <wischnow@informatik.hu-berlin.de>
|
||||||
|
|
||||||
|
* 10798: Src/Zle/compmatch.c: join_clines() tested the wrong
|
||||||
|
variable
|
||||||
|
|
||||||
2000-04-17 Peter Stephenson <pws@cambridgesiliconradio.com>
|
2000-04-17 Peter Stephenson <pws@cambridgesiliconradio.com>
|
||||||
|
|
||||||
* 10789: Doc/Zsh/expn.yo: better documentation for <(...) and
|
* 10789: Doc/Zsh/expn.yo: better documentation for <(...) and
|
||||||
|
|
|
@ -1893,10 +1893,10 @@ join_clines(Cline o, Cline n)
|
||||||
for (tt = o;
|
for (tt = o;
|
||||||
(to = tt->next) &&
|
(to = tt->next) &&
|
||||||
!cmp_anchors(tn, to, 1); tt = to);
|
!cmp_anchors(tn, to, 1); tt = to);
|
||||||
if (tt)
|
if (to)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (tt) {
|
if (to) {
|
||||||
diff = sub_join(n, o, to, 1);
|
diff = sub_join(n, o, to, 1);
|
||||||
|
|
||||||
if (po)
|
if (po)
|
||||||
|
|
Loading…
Reference in a new issue