1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2026-01-03 20:51:07 +01:00

better cursor positioning in words with multiple ambiguous word parts (11248)

This commit is contained in:
Sven Wischnowsky 2000-05-08 09:29:22 +00:00
parent 7d17c9ca4b
commit 029483745b
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2000-05-08 Sven Wischnowsky <wischnow@zsh.org>
* 11248: Src/Zle/compmatch.c: better cursor positioning in words
with multiple ambiguous word parts
2000-05-08 Tanaka Akira <akr@zsh.org>
* Bart, Tanaka Akira: 11247: Don't signal to a process group which

View file

@ -211,9 +211,9 @@ void
cline_setlens(Cline l, int both)
{
while (l) {
l->max = cline_sublen(l);
l->min = cline_sublen(l);
if (both)
l->min = l->max;
l->max = l->min;
l = l->next;
}
}