about summary refs log tree commit diff
path: root/Completion/Unix/Type/_path_files
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2009-08-05 00:46:44 +0000
committerClint Adams <clint@users.sourceforge.net>2009-08-05 00:46:44 +0000
commita0b5ea6ffe482e1d4d8642eda4ffaf51d140fe9d (patch)
treec10d09559f68ab79f4116340de1a623706348b85 /Completion/Unix/Type/_path_files
parent4a2b5b9137d0996c0c68dcc1b8d63db8be2ade37 (diff)
downloadzsh-a0b5ea6ffe482e1d4d8642eda4ffaf51d140fe9d.tar.gz
zsh-a0b5ea6ffe482e1d4d8642eda4ffaf51d140fe9d.tar.xz
zsh-a0b5ea6ffe482e1d4d8642eda4ffaf51d140fe9d.zip
27209: fix breakage from 27208.
Diffstat (limited to 'Completion/Unix/Type/_path_files')
-rw-r--r--Completion/Unix/Type/_path_files2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Type/_path_files b/Completion/Unix/Type/_path_files
index ab6684da8..8bc9373a1 100644
--- a/Completion/Unix/Type/_path_files
+++ b/Completion/Unix/Type/_path_files
@@ -160,7 +160,7 @@ if zstyle -s ":completion:${curcontext}:" file-sort tmp1; then
       if _have_glob_qual "$tmp1" complete; then
 	# unbalanced parenthesis is correct: match[1] contains the start,
 	# match[5] doesn't contain the end.
-	tmp2+=( "${match[1]}${match[5]})(${sort})" )
+	tmp2+=( "${match[1]}#q${sort})(${match[5]})" )
       else
         tmp2+=( "${tmp1}(${sort})" )
       fi