# HG changeset patch # User Bram Moolenaar # Date 1664816403 -7200 # Node ID 8c0232ab725cba6d6069e48f81ef69a1082c418a # Parent f19b866c6e252201ae5c762e570afd281bd1b756 patch 9.0.0651: build fails without the +conceal feature Commit: https://github.com/vim/vim/commit/eb47d6d20a47707d810360fd1684b21f67d5dec8 Author: Bram Moolenaar Date: Mon Oct 3 17:45:55 2022 +0100 patch 9.0.0651: build fails without the +conceal feature Problem: Build fails without the +conceal feature. Solution: Rename called function. diff --git a/src/drawline.c b/src/drawline.c --- 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 --- 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,