From afd3e16fec6b3778a74cfcc34619e312f58cd532 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Wed, 6 Jun 2007 08:49:48 +0000 Subject: 23529: quote completion dump to prevent global alias expansion --- Completion/compdump | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Completion') diff --git a/Completion/compdump b/Completion/compdump index 7b43a2668..b3476086c 100644 --- a/Completion/compdump +++ b/Completion/compdump @@ -41,32 +41,32 @@ print "#files: $#_d_files\tversion: $ZSH_VERSION" > $_d_file print "\n_comps=(" >> $_d_file for _d_f in ${(ok)_comps}; do - print -r - "${(q)_d_f}" "${(q)_comps[$_d_f]}" + print -r - "${(qq)_d_f}" "${(qq)_comps[$_d_f]}" done >> $_d_file print ")" >> $_d_file print "\n_services=(" >> $_d_file for _d_f in ${(ok)_services}; do - print -r - "${(q)_d_f}" "${(q)_services[$_d_f]}" + print -r - "${(qq)_d_f}" "${(qq)_services[$_d_f]}" done >> $_d_file print ")" >> $_d_file print "\n_patcomps=(" >> $_d_file for _d_f in ${(ok)_patcomps}; do - print -r - "${(q)_d_f}" "${(q)_patcomps[$_d_f]}" + print -r - "${(qq)_d_f}" "${(qq)_patcomps[$_d_f]}" done >> $_d_file print ")" >> $_d_file _d_tmp="_postpatcomps" print "\n_postpatcomps=(" >> $_d_file for _d_f in ${(ok)_postpatcomps}; do - print -r - "${(q)_d_f}" "${(q)_postpatcomps[$_d_f]}" + print -r - "${(qq)_d_f}" "${(qq)_postpatcomps[$_d_f]}" done >> $_d_file print ")" >> $_d_file print "\n_compautos=(" >> $_d_file for _d_f in "${(ok@)_compautos}"; do - print -r - "${(q)_d_f}" "${(q)_compautos[$_d_f]}" + print -r - "${(qq)_d_f}" "${(qq)_compautos[$_d_f]}" done >> $_d_file print ")" >> $_d_file @@ -129,7 +129,7 @@ done print >> $_d_file print "typeset -gUa _comp_assocs" >> $_d_file -print "_comp_assocs=( ${(q)_comp_assocs} )" >> $_d_file +print "_comp_assocs=( ${(qq)_comp_assocs} )" >> $_d_file mv $_d_file ${_d_file%.$HOST.$$} -- cgit 1.4.1