# HG changeset patch # User Bram Moolenaar # Date 1650708903 -7200 # Node ID 3c7f1b3ae427c4a7a091301a385ec34ce8a9185f # Parent 9b622722bad0dca10425b1a5f94871c476d618e8 patch 8.2.4810: missing changes in one file Commit: https://github.com/vim/vim/commit/56dba60216a1bf72c1de299316f4d4ef19e50ad5 Author: Bram Moolenaar Date: Sat Apr 23 11:03:58 2022 +0100 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4810, +/**/ 4809, /**/ 4808,