diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-03-29 08:59:48 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-03-29 08:59:48 +0000 |
commit | 32f8d43b61e357d38a3bf4f6a5bf63b2aa547945 (patch) | |
tree | 8a66e8905c8de8160f725aafc3df4e60993c510f /Completion | |
parent | 2249e5c319219a2a4d99b8439d4be511642cd9ec (diff) | |
download | zsh-32f8d43b61e357d38a3bf4f6a5bf63b2aa547945.tar.gz zsh-32f8d43b61e357d38a3bf4f6a5bf63b2aa547945.tar.xz zsh-32f8d43b61e357d38a3bf4f6a5bf63b2aa547945.zip |
fix comparison of expansions with expanded prefix (missing quoting) (13833)
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Core/_expand | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Core/_expand b/Completion/Core/_expand index 81ca913ba..4835e4efc 100644 --- a/Completion/Core/_expand +++ b/Completion/Core/_expand @@ -93,7 +93,7 @@ if [[ "$word" = [\~\$]*/* && "$tmp" = (yes|true|on|1|changed) ]]; then eval 'epre=( ${(e)~${word%%/*}} )' 2>/dev/null if [[ -n "$epre" && $#epre -eq 1 ]]; then opre="${word%%/*}" - pre="$epre[1]" + pre="${(q)epre[1]}" [[ "$tmp" != changed || $#exp -gt 1 || "${opre}${exp[1]#${pre}}" != "$word" ]] && exp=( ${opre}${^exp#${pre}} ) fi |