1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-29 15:31:28 +02:00

*** empty log message ***

This commit is contained in:
Sven Wischnowsky 2000-10-17 14:04:13 +00:00
parent 4c2807e313
commit 8ec18a622c
2 changed files with 10 additions and 2 deletions

@ -1,3 +1,8 @@
2000-10-17 Sven Wischnowsky <wischnow@zsh.org>
* 13005: Src/Zle/computil.c: make _arguments ignore unspecified
non-option arguments to the right of the cursor
2000-10-17 Peter Stephenson <pws@csr.com>
* Config/version.mk, Functions/Zle/.distfiles,
@ -8,7 +13,7 @@
2000-10-16 Sven Wischnowsky <wischnow@zsh.org>
* ?????: Test/54compmatch.ztst: add tests for the stuff in 12995
* 13003: Test/54compmatch.ztst: add tests for the stuff in 12995
2000-10-13 Bart Schaefer <schaefer@zsh.org>

@ -1485,8 +1485,11 @@ ca_parse_line(Cadef d, int multi, int first)
state.nargbeg = cur - 1;
state.argend = argend;
}
if (!d->args && !d->rest && *line && *line != '-' && *line != '+')
if (!d->args && !d->rest && *line && *line != '-' && *line != '+') {
if (!multi && cur > compcurrent)
break;
return 1;
}
if ((adef = state.def = ca_get_arg(d, state.nth)) &&
(state.def->type == CAA_RREST ||
state.def->type == CAA_RARGS)) {