summaryrefslogtreecommitdiffstats
path: root/Completion/Core
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-02-02 08:18:49 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-02-02 08:18:49 +0000
commit8ff6a955fe4b356db10ee40a456e35bda669ceef (patch)
treed9615e81b377803582b47d0534fa3fb2c54bd3d0 /Completion/Core
parentChanges references to sunsite.auc.dk to just sunsite.dk (13422) (diff)
downloadzsh-8ff6a955fe4b356db10ee40a456e35bda669ceef.tar
zsh-8ff6a955fe4b356db10ee40a456e35bda669ceef.tar.gz
zsh-8ff6a955fe4b356db10ee40a456e35bda669ceef.tar.bz2
zsh-8ff6a955fe4b356db10ee40a456e35bda669ceef.tar.lz
zsh-8ff6a955fe4b356db10ee40a456e35bda669ceef.tar.xz
zsh-8ff6a955fe4b356db10ee40a456e35bda669ceef.tar.zst
zsh-8ff6a955fe4b356db10ee40a456e35bda669ceef.zip
Peter:13427: filename-quoting fix in _expand
Diffstat (limited to 'Completion/Core')
-rw-r--r--Completion/Core/_expand5
1 files changed, 4 insertions, 1 deletions
diff --git a/Completion/Core/_expand b/Completion/Core/_expand
index 344dbaf88..d5864f50d 100644
--- a/Completion/Core/_expand
+++ b/Completion/Core/_expand
@@ -68,7 +68,10 @@ subd=("$exp[@]")
# Now try globbing.
[[ "$force" = *g* ]] || zstyle -T ":completion:${curcontext}:" glob &&
- eval 'exp=( ${~exp} ); exp=( ${exp//(#b)([][()|*?^#~<>\\=])/\\${match[1]}} )' 2>/dev/null
+ eval 'exp=( ${~exp} ); exp=( ${(q)exp} )' 2>/dev/null
+
+### Don't remember why we once used this instead of the (q) above.
+# eval 'exp=( ${~exp} ); exp=( ${exp//(#b)([][()|*?^#~<>\\=])/\\${match[1]}} )' 2>/dev/null
# If we don't have any expansions or only one and that is the same
# as the original string, we let other completers run.