about summary refs log tree commit diff
path: root/Completion/Zsh
diff options
context:
space:
mode:
authorPeter Stephenson <pws@zsh.org>2016-06-21 16:34:55 +0100
committerPeter Stephenson <pws@zsh.org>2016-06-21 16:34:55 +0100
commit5103c85abb239a12a3d29da9b41515cd4af19a9f (patch)
treeeb5e729b2d2c06274c8a08eaf332beb9a72f7abc /Completion/Zsh
parent016929e043abb8ba778293c29081ca8e227c6e58 (diff)
downloadzsh-5103c85abb239a12a3d29da9b41515cd4af19a9f.tar.gz
zsh-5103c85abb239a12a3d29da9b41515cd4af19a9f.tar.xz
zsh-5103c85abb239a12a3d29da9b41515cd4af19a9f.zip
38736: various RPN mode enhancements for zcalc
Diffstat (limited to 'Completion/Zsh')
-rw-r--r--Completion/Zsh/Type/_module_math_func2
-rw-r--r--Completion/Zsh/Type/_user_math_func2
2 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Zsh/Type/_module_math_func b/Completion/Zsh/Type/_module_math_func
index 4df8d9714..6be9c006a 100644
--- a/Completion/Zsh/Type/_module_math_func
+++ b/Completion/Zsh/Type/_module_math_func
@@ -6,4 +6,4 @@ local -a funcs
 funcs=(${${${(f)"$(zmodload -Fl zsh/mathfunc 2>/dev/null)"}:#^+f:*}##+f:})
 
 _wanted module-math-functions expl 'math function from zsh/mathfunc' \
-    compadd -S '(' "$@" -a funcs
+    compadd -S '(' -q "$@" -a funcs
diff --git a/Completion/Zsh/Type/_user_math_func b/Completion/Zsh/Type/_user_math_func
index 16774f70b..35a49d50e 100644
--- a/Completion/Zsh/Type/_user_math_func
+++ b/Completion/Zsh/Type/_user_math_func
@@ -6,4 +6,4 @@ local -a funcs
 funcs=(${${${(f)"$(functions -M)"}##functions -M }%% *})
 
 _wanted user-math-functions expl 'user math function' \
-    compadd -S '(' "$@" -a funcs
+    compadd -S '(' -q "$@" -a funcs