commit 3e41e7d9c10d9159276f0258a6317175c9772955
parent 321db867d5aeb818e60fb9d6a2fd6dba37a42d2e
Author: zeertzjq <zeertzjq@outlook.com>
Date: Sun, 24 Apr 2022 21:47:31 +0800
vim-patch:8.2.4810: missing changes in one file
Problem: Missing changes in one file.
Solution: Also change the struct initializers.
https://github.com/vim/vim/commit/56dba60216a1bf72c1de299316f4d4ef19e50ad5
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/src/nvim/regexp.c b/src/nvim/regexp.c
@@ -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().