From: Hirohito Higashi Date: Sat, 8 Nov 2025 17:20:55 +0000 (+0000) Subject: patch 9.1.1900: tabpanel: wrong condition after v9.1.1898 X-Git-Tag: v9.1.1900^0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=47c30bb03a765c9a89c0a9a8eadc414611866df6;p=thirdparty%2Fvim.git patch 9.1.1900: tabpanel: wrong condition after v9.1.1898 Problem: tabpanel: wrong condition after v9.1.1898 Solution: Update condition (Hirohito Higashi) related: #18678 closes: #18692 Signed-off-by: Hirohito Higashi Signed-off-by: Christian Brabandt --- diff --git a/src/screen.c b/src/screen.c index bbb4bbaaf4..123276b5d0 100644 --- a/src/screen.c +++ b/src/screen.c @@ -2328,7 +2328,7 @@ screen_fill( { redraw_cmdline = TRUE; if (((start_col == 0 && end_col == Columns) - || (start_col <= cmdline_col_off + || (start_col == cmdline_col_off && end_col == cmdline_col_off + cmdline_width)) && c1 == ' ' && c2 == ' ' && attr == 0 #ifdef FEAT_PROP_POPUP diff --git a/src/version.c b/src/version.c index a95d332c38..78fb7bea17 100644 --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1900, /**/ 1899, /**/