about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>2000-03-24 11:58:53 +0000
committerTanaka Akira <akr@users.sourceforge.net>2000-03-24 11:58:53 +0000
commitad108b32774ef7860c280c4609aa178c15e6b759 (patch)
treebb1a4d7761f6a7c4a42c34a50ba4c05a0dacc3f0
parentbee5edef68f587cff2f25690f92045a2d4a0f70f (diff)
downloadzsh-ad108b32774ef7860c280c4609aa178c15e6b759.tar.gz
zsh-ad108b32774ef7860c280c4609aa178c15e6b759.tar.xz
zsh-ad108b32774ef7860c280c4609aa178c15e6b759.zip
zsh-workers/10226
-rw-r--r--Completion/Core/_path_files4
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Core/_path_files b/Completion/Core/_path_files
index 9f197f324..d5feaa540 100644
--- a/Completion/Core/_path_files
+++ b/Completion/Core/_path_files
@@ -417,9 +417,9 @@ for prepath in "$prepaths[@]"; do
     # Next we see if this component is ambiguous.
 
     if [[ "$tmp3" = */* ]]; then
-       tmp4=$tmp1[(I)^${tmp1[1]%%/*}/*]
+       tmp4=$tmp1[(I)^${(q)tmp1[1]%%/*}/*]
     else
-       tmp4=$tmp1[(I)^${tmp1[1]}]
+       tmp4=$tmp1[(I)^${(q)tmp1[1]}]
     fi
 
     if [[ "$tpre" = */* ]]; then