summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-09-14 22:30:59 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-14 22:30:59 +0100
commitd3922afbd6f56e82c7b5fd7a7ebc0769e416cae8 (patch)
tree80f6306fdbe3e0771056088110f43db033aa7d48
parentebd0e8bb853cb744b60bf4f57011c4379ae4aaed (diff)
downloadvim-git-d3922afbd6f56e82c7b5fd7a7ebc0769e416cae8.tar.gz
patch 9.0.0467: build failurev9.0.0467
Problem: Build failure. Solution: Add missing change.
-rw-r--r--src/ex_cmds.c3
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 4938c6f48..ebcd441c8 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 1aa99ae37..643195792 100644
--- a/src/version.c
+++ b/src/version.c
@@ -704,6 +704,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 467,
+/**/
466,
/**/
465,