diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Completion/Zsh/Command/_zstyle | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 46db7b029..5e2f1c36e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-01-13 Peter Stephenson <p.w.stephenson@ntlworld.com> + + * Mikael: 27597: Completion/Zsh/Command/_zstyle: accepting + completion unnecessarily hard. + 2010-01-13 Peter Stephenson <pws@csr.com> * Joakim Rosqvist: 27591 as modified in 27594: @@ -12575,5 +12580,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.4860 $ +* $Revision: 1.4861 $ ***************************************************** diff --git a/Completion/Zsh/Command/_zstyle b/Completion/Zsh/Command/_zstyle index 008061978..6e34fcc4b 100644 --- a/Completion/Zsh/Command/_zstyle +++ b/Completion/Zsh/Command/_zstyle @@ -185,7 +185,7 @@ while (( $#state )); do case "$state[1]" in (contexts) if [[ ! -prefix :*: ]]; then - _wanted contexts expl context compadd -P : -S : completion zftp + _wanted contexts expl context compadd -P : -qS : completion zftp elif compset -P :completion:; then for ostate in functions _completers cmdorcont argument tag; do compset -P '[^:]#:' || break |