about summary refs log tree commit diff
path: root/Completion/Core/compdump
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>2000-02-28 09:22:33 +0000
committerTanaka Akira <akr@users.sourceforge.net>2000-02-28 09:22:33 +0000
commit8c15ccd08c114ecde068794de0a176dca14716d6 (patch)
treeceae7bc5ea88bdf256d88cf3f61c3bfe1af6c5a7 /Completion/Core/compdump
parentd70e40c984398c1661bf614b9747c7168d162ce0 (diff)
downloadzsh-8c15ccd08c114ecde068794de0a176dca14716d6.tar.gz
zsh-8c15ccd08c114ecde068794de0a176dca14716d6.tar.xz
zsh-8c15ccd08c114ecde068794de0a176dca14716d6.zip
zsh-workers/9892
Diffstat (limited to 'Completion/Core/compdump')
-rw-r--r--Completion/Core/compdump6
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/Core/compdump b/Completion/Core/compdump
index 97a181084..c577747a1 100644
--- a/Completion/Core/compdump
+++ b/Completion/Core/compdump
@@ -29,19 +29,19 @@ print "#files: $#_d_files" > $_d_file
 
 print "_comps=(" >> $_d_file
 for _d_f in ${(ok)_comps}; do
-    print -r - "'${_d_f//\'/'\\''}'" "'${_comps[$_d_f]//\'/'\\''}'"
+    print -r - "${(q)_d_f}" "${(q)_comps[$_d_f]}"
 done  >> $_d_file
 print ")" >> $_d_file
 
 print "\n_patcomps=(" >> $_d_file
 for _d_f in "${(ok@)_patcomps}"; do
-  print -r - "'${_d_f//\'/'\\''}'" "'${_patcomps[$_d_f]//\'/'\\''}'"
+  print -r - "${(q)_d_f}" "${(q)_patcomps[$_d_f]}"
 done >> $_d_file
 print ")" >> $_d_file
 
 print "\n_postpatcomps=(" >> $_d_file
 for _d_f in "${(ok@)_postpatcomps}"; do
-  print -r - "'${_d_f//\'/'\\''}'" "'${_postpatcomps[$_d_f]//\'/'\\''}'"
+  print -r - "${(q)_d_f}" "${(q)_postpatcomps[$_d_f]}"
 done >> $_d_file
 print ")" >> $_d_file