Commit: patch 9.1.1900: tabpanel: wrong condition after v9.1.1898

0 views
Skip to first unread message

Christian Brabandt

unread,
Nov 13, 2025, 7:26:27 AM (10 days ago) Nov 13
to vim...@googlegroups.com
patch 9.1.1900: tabpanel: wrong condition after v9.1.1898

Commit: https://github.com/vim/vim/commit/47c30bb03a765c9a89c0a9a8eadc414611866df6
Author: Hirohito Higashi <h.eas...@gmail.com>
Date: Sat Nov 8 17:20:55 2025 +0000

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 <h.eas...@gmail.com>
Signed-off-by: Christian Brabandt <c...@256bit.org>

diff --git a/src/screen.c b/src/screen.c
index bbb4bbaaf..123276b5d 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 a95d332c3..78fb7bea1 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,
/**/
Reply all
Reply to author
Forward
0 new messages