summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Core/_expand5
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 69c47c872..f2ab51b36 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-02-02 Sven Wischnowsky <wischnow@zsh.org>
+
+ * Peter: 13427: Completion/Core/_expand: fix for handling quoting
+ for filenames with weird characters
+
2001-02-01 Oliver Kiddle <opk@zsh.org>
* 13422: README, Completion/User/_urls, Doc/Zsh/manual.yo,
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.