about summary refs log tree commit diff
path: root/Completion/Linux
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2016-11-03 08:42:34 +0100
committerMikael Magnusson <mikachu@gmail.com>2016-12-06 21:15:14 +0100
commita43e6e2db423930ccd0139a4263db64aa7875c00 (patch)
tree0e3161df324ccef7d35c9da2b35b538ef1022365 /Completion/Linux
parent9f605904dda106c181717877f29261782fbf243d (diff)
downloadzsh-a43e6e2db423930ccd0139a4263db64aa7875c00.tar.gz
zsh-a43e6e2db423930ccd0139a4263db64aa7875c00.tar.xz
zsh-a43e6e2db423930ccd0139a4263db64aa7875c00.zip
40107: _mount, _fusermount: fix quoting
Diffstat (limited to 'Completion/Linux')
-rw-r--r--Completion/Linux/Command/_fusermount2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Linux/Command/_fusermount b/Completion/Linux/Command/_fusermount
index d3d1647fa..02cb57237 100644
--- a/Completion/Linux/Command/_fusermount
+++ b/Completion/Linux/Command/_fusermount
@@ -20,7 +20,7 @@ case "$state" in
     _files -/
   else
     mtpts=(${${${"${(f)$(< /etc/mtab)}"}#* }%% *})
-    _canonical_paths mounted 'mounted filesystem' $mtpts
+    _canonical_paths mounted 'mounted filesystem' "${(@g::)mtpts}"
   fi
   ;;
 esac