summaryrefslogtreecommitdiff
path: root/Completion/Unix/Command
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r--Completion/Unix/Command/_bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_bash b/Completion/Unix/Command/_bash
index 260ca64fb..cc219f788 100644
--- a/Completion/Unix/Command/_bash
+++ b/Completion/Unix/Command/_bash
@@ -71,12 +71,12 @@ case $state in
fi
;;
set-options)
- tmp=( ${(f)"$( _call_program set-options ${(q-)cmd} -c '"shopt -o"' )"} )
+ tmp=( ${(f)"$( _call_program set-options $cmd -c '"shopt -o"' )"} )
tmp=( ${tmp%%[[:space:]]*} )
_values -w '`set` option' $tmp && ret=0
;;
shopt-options)
- tmp=( ${(f)"$( _call_program shopt-options ${(q-)cmd} -c shopt )"} )
+ tmp=( ${(f)"$( _call_program shopt-options $cmd -c shopt )"} )
tmp=( ${tmp%%[[:space:]]*} )
_values -w '`shopt` option' $tmp && ret=0
;;