summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-10-03 17:45:55 +0100
committerBram Moolenaar <Bram@vim.org>2022-10-03 17:45:55 +0100
commiteb47d6d20a47707d810360fd1684b21f67d5dec8 (patch)
treee112d22180600f133ebf1606c4b679709ada6576
parent0466d398a550623126fba3a2a08208a798b28bda (diff)
patch 9.0.0651: build fails without the +conceal featurev9.0.0651
Problem: Build fails without the +conceal feature. Solution: Rename called function.
-rw-r--r--src/drawline.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/drawline.c b/src/drawline.c
index 793d8a9996..4d504e1035 100644
--- a/src/drawline.c
+++ b/src/drawline.c
@@ -3699,7 +3699,7 @@ win_line(
wlv.col -= wlv.boguscols;
wlv.boguscols = 0;
#else
- screen_line(wp, &wlv, FALSE);
+ wlv_screen_line(wp, &wlv, FALSE);
#endif
++wlv.row;
++wlv.screen_row;
diff --git a/src/version.c b/src/version.c
index 000c1e3d47..c84d309e08 100644
--- a/src/version.c
+++ b/src/version.c
@@ -700,6 +700,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 651,
+/**/
650,
/**/
649,