diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Completion/Unix/Type/_path_files | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 5764ddaa5..bd407390a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-08-05 Clint Adams <clint@zsh.org> + + * 27208: Completion/Unix/Type_path_files: try to do the + right thing when applying file-sort to extant glob qualifiers. + 2009-08-01 Clint Adams <clint@zsh.org> * 27203: Completion/Debian/Command/_aptitude: treat @@ -12048,5 +12053,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.4753 $ +* $Revision: 1.4754 $ ***************************************************** diff --git a/Completion/Unix/Type/_path_files b/Completion/Unix/Type/_path_files index 63713eff7..ab6684da8 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]}${sort}${match[5]})" ) + tmp2+=( "${match[1]}${match[5]})(${sort})" ) else tmp2+=( "${tmp1}(${sort})" ) fi |