From: Bram Moolenaar Date: Wed, 14 Sep 2022 21:30:59 +0000 (+0100) Subject: patch 9.0.0467: build failure X-Git-Tag: v9.0.0467 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3922afbd6f56e82c7b5fd7a7ebc0769e416cae8;p=thirdparty%2Fvim.git patch 9.0.0467: build failure Problem: Build failure. Solution: Add missing change. --- diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 4938c6f485..ebcd441c81 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -4684,7 +4684,8 @@ ex_substitute(exarg_T *eap) last_line = lnum + 1; } #ifdef FEAT_PROP_POPUP - adjust_props_for_split(lnum + 1, lnum, plen, 1); + adjust_props_for_split(lnum + 1, lnum, + plen, 1, FALSE); #endif // all line numbers increase ++sub_firstlnum; diff --git a/src/version.c b/src/version.c index 1aa99ae379..6431957926 100644 --- a/src/version.c +++ b/src/version.c @@ -703,6 +703,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 467, /**/ 466, /**/