diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2012-01-22 16:22:20 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2012-01-22 16:22:20 +0100 |
commit | dbd9bc55f629891c29373398120d8af7e2c44732 (patch) | |
tree | 7a4f6a02ad876cdd236dbe6a8d68e172dc50a9e4 /Completion/Unix/Command/_tar | |
parent | 1a3a8694a6eae1e140d746e4c21769cdd56971c0 (diff) | |
parent | 09532a70ead07a600a3d2258837d6e3fe943f2fd (diff) | |
download | zsh-dbd9bc55f629891c29373398120d8af7e2c44732.tar.gz zsh-dbd9bc55f629891c29373398120d8af7e2c44732.zip |
Merge branch 'upstream' into debian
Diffstat (limited to 'Completion/Unix/Command/_tar')
-rw-r--r-- | Completion/Unix/Command/_tar | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_tar b/Completion/Unix/Command/_tar index 4f3247291..ce5852453 100644 --- a/Completion/Unix/Command/_tar +++ b/Completion/Unix/Command/_tar @@ -177,7 +177,7 @@ else fi fi if (( index )); then - index="$~words[index+1]" + index=${~${(Q)words[index+1]}} [[ $index = (.|..|)/* ]] || index=~+/$index _files -W $index else |