patch 9.1.1900: tabpanel: wrong condition after v9.1.1898
Commit:
https://github.com/vim/vim/commit/47c30bb03a765c9a89c0a9a8eadc414611866df6
Author: Hirohito Higashi <[email protected]>
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 <[email protected]>
Signed-off-by: Christian Brabandt <[email protected]>
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,
/**/
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion visit
https://groups.google.com/d/msgid/vim_dev/E1vJWOt-001D7v-TW%40256bit.org.