about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2003-06-05 13:23:49 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2003-06-05 13:23:49 +0000
commitb3ccc068a4efe953d6540f70f04fb951ee17294f (patch)
treedefca04933199218601cdca56d9e37562cca74c5 /Completion
parenta87ce0fb25799199317ec0645143e2c34026dabf (diff)
downloadzsh-b3ccc068a4efe953d6540f70f04fb951ee17294f.tar.gz
zsh-b3ccc068a4efe953d6540f70f04fb951ee17294f.tar.xz
zsh-b3ccc068a4efe953d6540f70f04fb951ee17294f.zip
18607: correctly handle quoting for remote files for rcp completion
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Unix/Command/_rlogin6
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/Unix/Command/_rlogin b/Completion/Unix/Command/_rlogin
index 4fb010ec6..0d8355bfb 100644
--- a/Completion/Unix/Command/_rlogin
+++ b/Completion/Unix/Command/_rlogin
@@ -5,7 +5,7 @@ _rcp_remote_files () {
   local expl remfiles remdispf remdispd suf ret=1
 
   if zstyle -T ":completion:${curcontext}:" remote-access; then
-    remfiles=(${(M)${(f)"$(rsh ${IPREFIX%:} ls -d1F ${PREFIX%%[^./][^/]#}\* 2>/dev/null)"}%%[^/]#(|/)})
+    remfiles=(${(M)${(f)"$(rsh ${IPREFIX%:} ls -d1F ${(Q)PREFIX%%[^./][^/]#}\* 2>/dev/null)"}%%[^/]#(|/)})
     compset -P '*/'
     compset -S '/*' || suf='remote file'
 
@@ -16,9 +16,9 @@ _rcp_remote_files () {
     while _tags; do
       while _next_label files expl ${suf:-remote directory}; do
         [[ -n $suf ]] && compadd "$@" "$expl[@]" -d remdispf \
-	    ${remdispf%[*=@|]} && ret=0 
+	    ${(q)remdispf%[*=@|]} && ret=0 
 	compadd ${suf:+-S/} "$@" "$expl[@]" -d remdispd \
-	    ${remdispd%/} && ret=0
+	    ${(q)remdispd%/} && ret=0
       done
       (( ret )) || return 0
     done