about summary refs log tree commit diff
path: root/Completion/Zsh/Command
diff options
context:
space:
mode:
authorSebastian Gniazdowski <psprint@zdharma.org>2017-10-29 12:40:11 +0100
committerOliver Kiddle <opk@zsh.org>2017-10-29 13:54:05 +0100
commit37c5e20a80dec93a48d85518d34c49f2168847bb (patch)
treef0692e17546a4782a178506a9b3e11c6931af10c /Completion/Zsh/Command
parent08e865ed90621895149debde39525cad4ba97675 (diff)
downloadzsh-37c5e20a80dec93a48d85518d34c49f2168847bb.tar.gz
zsh-37c5e20a80dec93a48d85518d34c49f2168847bb.tar.xz
zsh-37c5e20a80dec93a48d85518d34c49f2168847bb.zip
41960: add missing local declarations for MATCH, MBEGIN and MEND
Diffstat (limited to 'Completion/Zsh/Command')
-rw-r--r--Completion/Zsh/Command/_zstyle3
1 files changed, 2 insertions, 1 deletions
diff --git a/Completion/Zsh/Command/_zstyle b/Completion/Zsh/Command/_zstyle
index 0e828225e..7db73c0c0 100644
--- a/Completion/Zsh/Command/_zstyle
+++ b/Completion/Zsh/Command/_zstyle
@@ -1,7 +1,8 @@
 #compdef zstyle
 
 local state context ostate line expl ctop suf
-local nm=$compstate[nmatches] taglist patterns contexts
+local nm=$compstate[nmatches] taglist patterns contexts MATCH
+integer MBEGIN MEND
 typeset -A opt_args styles
 
 _vcs_info_hooks() {