summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--Completion/Unix/Command/_postfix6
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 626647c07..0d130b040 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2016-09-16 Daniel Shahaf <d.s@daniel.shahaf.name>
+ * unposted: Completion/Unix/Command/_postfix: Correct quoting
+ in _call_program invocations.
+
* 39312 (tweaked): Completion/Unix/Command/_postfix: _postfix
(postconf): Complete only applicable parameters for -X and -#.
diff --git a/Completion/Unix/Command/_postfix b/Completion/Unix/Command/_postfix
index 26a262bd3..006c950e3 100644
--- a/Completion/Unix/Command/_postfix
+++ b/Completion/Unix/Command/_postfix
@@ -30,11 +30,11 @@ _postfix_main_cf_parameter() {
#
# don't bother to add -c in this case: the defaults don't depend on the config dir.
_wanted parameters expl 'main.cf parameter' compadd "$@" -- \
- ${${(f)"$(_call_program postconf_-d "${(q)words[1]} -$kind")"}%% =*}
+ ${${(f)"$(_call_program postconf_-d "${words[1]} -$kind")"}%% =*}
;;
(n)
# Show the values too.
- local -a kv=( ${${(f)"$(_call_program postconf_-n "${(q)words[1]} ${opt_args[-c]+"-c ${(q)opt_args[-c]}"} -$kind")"}/ = /:} )
+ local -a kv=( ${${(f)"$(_call_program postconf_-n "${words[1]} ${opt_args[-c]+"-c ${opt_args[-c]}"} -$kind")"}/ = /:} )
_describe -t parameters 'main.cf parameter' kv
;;
(*)
@@ -50,7 +50,7 @@ _postfix_main_cf_parameter_and_value() {
# completing «postconf foo=bar=<TAB>» would change main.cf. So, don't remove
# it.
if compset -P 1 '*='; then
- local value="`_call_program postconf-get-value-at-dir "${(q)words[1]} ${opt_args[-c]+"-c ${(q)opt_args[-c]}"} -h -- ${(q)IPREFIX%=}"`"
+ local value="`_call_program postconf-get-value-at-dir "${words[1]} ${opt_args[-c]+"-c ${opt_args[-c]}"} -h -- ${(q)IPREFIX%=}"`"
[[ -n $value ]] && compadd "$@" -- $value
else
_postfix_main_cf_parameter d -S=