aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-04-24 21:47:31 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-04-24 21:47:57 +0800
commit3e41e7d9c10d9159276f0258a6317175c9772955 (patch)
tree4a033cd3fdc37cbda595397515c695814f6fbe53 /src
parent321db867d5aeb818e60fb9d6a2fd6dba37a42d2e (diff)
downloadrneovim-3e41e7d9c10d9159276f0258a6317175c9772955.tar.gz
rneovim-3e41e7d9c10d9159276f0258a6317175c9772955.tar.bz2
rneovim-3e41e7d9c10d9159276f0258a6317175c9772955.zip
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 (limited to 'src')
-rw-r--r--src/nvim/regexp.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/regexp.c b/src/nvim/regexp.c
index b61c9a2cf5..a98250f6e8 100644
--- 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().