diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-04 12:56:40 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-04 12:56:40 +0000 |
commit | b73476952312aa4e91432e6574665e953fef5c76 (patch) | |
tree | 2cfdc12cda6cc7d6aeadaed8ee501636b212383e /Src/Zle | |
parent | 8488dcb806f8aaa3009691bcd43f0ac7c787c1ad (diff) | |
download | zsh-b73476952312aa4e91432e6574665e953fef5c76.tar.gz zsh-b73476952312aa4e91432e6574665e953fef5c76.tar.xz zsh-b73476952312aa4e91432e6574665e953fef5c76.zip |
fix for comparguments: completion of options after option with
rest-arguments was wrong
Diffstat (limited to 'Src/Zle')
-rw-r--r-- | Src/Zle/computil.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/Zle/computil.c b/Src/Zle/computil.c index 828fe36d0..e73fe8eaf 100644 --- a/Src/Zle/computil.c +++ b/Src/Zle/computil.c @@ -1427,7 +1427,8 @@ bin_comparguments(char *nam, char **args, char *ops, int func) if ((ca_laststate.opt || (ca_laststate.doff && ca_laststate.def) || (ca_laststate.def && (ca_laststate.def->type == CAA_OPT || - ca_laststate.def->type >= CAA_RARGS))) && + (ca_laststate.def->type >= CAA_RARGS && + ca_laststate.def->num < 0)))) && (!ca_laststate.def || ca_laststate.def->type < CAA_RARGS || (ca_laststate.def->type == CAA_RARGS ? (ca_laststate.curpos == ca_laststate.argbeg + 1) : |