1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 08:51:18 +02:00

fix for unambiguous string insertion (11466)

This commit is contained in:
Sven Wischnowsky 2000-05-19 08:33:06 +00:00
parent f9e65c2b1f
commit 7672efed2e
2 changed files with 4 additions and 2 deletions

@ -1,10 +1,12 @@
2000-05-19 Sven Wischnowsky <wischnow@zsh.org>
* 11466: Src/Zle/compresult.c: fix for unambiguous string insertion
* 11464: Completion/Base/_arguments, Completion/Core/_approximate,
Completion/Core/_files, Completion/Core/_multi_parts,
Completion/Core/_sep_parts, Completion/Debian/_apt,
Completion/User/_enscript, Completion/User/_finger,
Completion/User/_urls, Completion/X/_xutils:don't use $match for
Completion/User/_urls, Completion/X/_xutils: don't use $match for
something different than (#b)ackrefs
2000-05-18 Sven Wischnowsky <wischnow@zsh.org>

@ -105,7 +105,7 @@ cut_cline(Cline l)
ls = 1;
for (p = e; p; p = p->next)
len += p->max;
len += p->min;
if (len > ((minmlen << 1) / 3))
goto end;