about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2002-05-21 07:35:33 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2002-05-21 07:35:33 +0000
commit477cc33aaef10c3afcef758a51dc390b8d45d0b3 (patch)
tree5cdc98b4fd631e8406ab27f528b5c27bdb0d4f1f
parentbfc32be424b3ca900de5a6492d2a926aaf3ac44a (diff)
downloadzsh-477cc33aaef10c3afcef758a51dc390b8d45d0b3.tar.gz
zsh-477cc33aaef10c3afcef758a51dc390b8d45d0b3.tar.xz
zsh-477cc33aaef10c3afcef758a51dc390b8d45d0b3.zip
better splitting of -g-strings; this failed when patterns contained spaces (17189)
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Type/_path_files4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b8ef3ce00..37584a3d6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-21  Sven Wischnowsky  <wischnow@zsh.org>
+
+	* 17189: Completion/Unix/Type/_path_files: better splitting of
+	-g-strings; this failed when patterns contained spaces
+
 2002-05-20  Felix Rosencrantz <f_rosencrantz@yahoo.com>
 
 	* 17021: Completion/Unix/Command/.distfiles,
diff --git a/Completion/Unix/Type/_path_files b/Completion/Unix/Type/_path_files
index df820c643..b41f8afa9 100644
--- a/Completion/Unix/Type/_path_files
+++ b/Completion/Unix/Type/_path_files
@@ -23,9 +23,9 @@ sopt="-${(@j::M)${(@)tmp1#-}#?}"
 (( $tmp1[(I)-[/g]*] )) && haspats=yes
 (( $tmp1[(I)-g*] )) && gopt=yes
 if (( $tmp1[(I)-/] )); then
-  pats=( '*(-/)' ${=${(M)tmp1:#-g*}#-g} )
+  pats=( '*(-/)' ${(z)${(M)tmp1:#-g*}#-g} )
 else
-  pats=( "${(@)=${(@M)tmp1:#-g*}#-g}" )
+  pats=( "${(@z)${(@M)tmp1:#-g*}#-g}" )
 fi
 pats=( "${(@)pats:# #}" )