]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.1.1900: tabpanel: wrong condition after v9.1.1898 v9.1.1900
authorHirohito Higashi <h.east.727@gmail.com>
Sat, 8 Nov 2025 17:20:55 +0000 (17:20 +0000)
committerChristian Brabandt <cb@256bit.org>
Sat, 8 Nov 2025 17:20:55 +0000 (17:20 +0000)
Problem:  tabpanel: wrong condition after v9.1.1898
Solution: Update condition (Hirohito Higashi)

related: #18678
closes: #18692

Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
src/screen.c
src/version.c

index bbb4bbaaf43c734bb81de828cc1114d5fe4cfff9..123276b5d0f69d799f20a5cb53013175f4f284fd 100644 (file)
@@ -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
index a95d332c3805fdbdf47689a0919a855bed157a87..78fb7bea175b79171dfaa45ddabe5b1d7375bf70 100644 (file)
@@ -729,6 +729,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1900,
 /**/
     1899,
 /**/