1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-10 10:21:23 +02:00

24650: use zstyle -t instead of -T since extra-verbose isn't meant to default to yes.

This commit is contained in:
Clint Adams 2008-03-01 23:10:30 +00:00
parent 658deeb7e9
commit 5707bb5638
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-03-01 Clint Adams <clint@zsh.org>
* 24650: Completion/Unix/Type/_path_commands: use zstyle -t instead
of -T since extra-verbose isn't meant to default to yes.
2008-02-29 Clint Adams <clint@zsh.org>
* 24632: Completion/Unix/Command/_rsync: fix remote ssh filename

View file

@ -26,7 +26,7 @@ return 1
_path_commands() {
local need_desc expl ret=1
if zstyle -T ":completion:${curcontext}:" extra-verbose; then
if zstyle -t ":completion:${curcontext}:" extra-verbose; then
local update_policy first
if [[ $+_command_descriptions -eq 0 ]]; then
first=yes