diff options
| author | Bart Schaefer <barts@users.sourceforge.net> | 2000-05-28 21:10:13 +0000 |
|---|---|---|
| committer | Bart Schaefer <barts@users.sourceforge.net> | 2000-05-28 21:10:13 +0000 |
| commit | 7a3ca7a673d98fcbe50c192cba6165d17505e394 (patch) | |
| tree | 8eb236b85172be8a250751a81e453fd01c63460c /Completion/Base | |
| parent | 11616: netinet/in_systm.h again (diff) | |
| download | zsh-7a3ca7a673d98fcbe50c192cba6165d17505e394.tar zsh-7a3ca7a673d98fcbe50c192cba6165d17505e394.tar.gz zsh-7a3ca7a673d98fcbe50c192cba6165d17505e394.tar.bz2 zsh-7a3ca7a673d98fcbe50c192cba6165d17505e394.tar.lz zsh-7a3ca7a673d98fcbe50c192cba6165d17505e394.tar.xz zsh-7a3ca7a673d98fcbe50c192cba6165d17505e394.tar.zst zsh-7a3ca7a673d98fcbe50c192cba6165d17505e394.zip | |
11618: Fix bad shift.
Diffstat (limited to 'Completion/Base')
| -rw-r--r-- | Completion/Base/_arguments | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Completion/Base/_arguments b/Completion/Base/_arguments index b605605da..11c62705f 100644 --- a/Completion/Base/_arguments +++ b/Completion/Base/_arguments @@ -285,7 +285,7 @@ if (( $# )) && comparguments -i "$autod" "$@"; then # Otherwise we call it with the description-arguments. - eval "action=( $action )" + set -A action ${=~action} while _next_label "$subc" expl "$descr"; do "$action[1]" "$subopts[@]" "$expl[@]" "${(@)action[2,-1]}" done @@ -293,9 +293,9 @@ if (( $# )) && comparguments -i "$autod" "$@"; then fi fi fi - shift 1 descrs - shift 1 actions - shift 1 subcs + shift "${#descrs} ? 1 : 0" descrs + shift "${#actions} ? 1 : 0" actions + shift "${#subcs} ? 1 : 0" subcs done if [[ -z "$matched$hasopts" ]] && _requested options && |
