From: Bram Moolenaar Date: Sat, 23 Apr 2022 10:03:58 +0000 (+0100) Subject: patch 8.2.4810: missing changes in one file X-Git-Tag: v8.2.4810 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=56dba60216a1bf72c1de299316f4d4ef19e50ad5;p=thirdparty%2Fvim.git patch 8.2.4810: missing changes in one file Problem: Missing changes in one file. Solution: Also change the struct initializers. --- diff --git a/src/regexp.c b/src/regexp.c index c031cc9966..a9bdd95aaa 100644 --- a/src/regexp.c +++ b/src/regexp.c @@ -2535,7 +2535,6 @@ static regengine_T bt_regengine = bt_regfree, bt_regexec_nl, bt_regexec_multi, - (char_u *)"" }; #include "regexp_nfa.c" @@ -2546,7 +2545,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(). diff --git a/src/version.c b/src/version.c index 6800fce0cd..bb63fdbaa6 100644 --- a/src/version.c +++ b/src/version.c @@ -746,6 +746,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4810, /**/ 4809, /**/