regexp: Add missing local for arrays match mbegin mend

See #497.
This commit is contained in:
Matthew Martin 2018-01-22 21:41:49 -06:00
parent 03692831ad
commit 1f1e629290

View File

@ -52,6 +52,7 @@ _zsh_highlight_regexp_highlighter_loop()
local buf="$1" pat="$2"
integer OFFSET=0
local MATCH; integer MBEGIN MEND
local -a match mbegin mend
while true; do
[[ "$buf" =~ "$pat" ]] || return;
region_highlight+=("$((MBEGIN - 1 + OFFSET)) $((MEND + OFFSET)) $ZSH_HIGHLIGHT_REGEXP[$pat]")