vim-patch:8.2.4810: missing changes in one file

Problem:    Missing changes in one file.
Solution:   Also change the struct initializers.
56dba60216
This commit is contained in:
zeertzjq 2022-04-24 21:47:31 +08:00
parent 321db867d5
commit 3e41e7d9c1

View File

@ -2222,7 +2222,6 @@ static regengine_T bt_regengine =
bt_regfree,
bt_regexec_nl,
bt_regexec_multi,
(char_u *)""
};
static regengine_T nfa_regengine =
@ -2231,7 +2230,6 @@ static regengine_T nfa_regengine =
nfa_regfree,
nfa_regexec_nl,
nfa_regexec_multi,
(char_u *)""
};
// Which regexp engine to use? Needed for vim_regcomp().