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

users/8522: Completion/Darwin/Command/_defaults: fixed the number of spaces

broken while sending the patch by email.
This commit is contained in:
Motoi WASHIDA 2005-02-18 16:05:14 +00:00
parent d7c13fb2c3
commit c9334d616f
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2005-02-19 Motoi Washida <a66@h8.dion.ne.jp>
* users/8522: Completion/Darwin/Command/_defaults: fixed the
number of spaces broken while sending the patch by email.
2005-02-18 Peter Stephenson <pws@csr.com>
* 20823: Src/Modules/stat.c: debugging test failed on 64-bit

View file

@ -15,7 +15,7 @@ _defaults_domains(){
_defaults_keys(){
local ks
ks=(${${${${(M)${(f)"$(defaults read "$words[2]" 2>/dev/null)"}:# [^ ]*=*}# }%% = *}:Q})
ks=(${${${${(M)${(f)"$(defaults read "$words[2]" 2>/dev/null)"}:# [^ ]*=*}# }%% = *}:Q})
local expl
_wanted keys expl 'key' compadd "$ks[@]"
}