Skip to content

Commit 47c30bb

Browse files
h-eastchrisbra
authored andcommitted
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.east.727@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
1 parent 185cec2 commit 47c30bb

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/screen.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2328,7 +2328,7 @@ screen_fill(
23282328
{
23292329
redraw_cmdline = TRUE;
23302330
if (((start_col == 0 && end_col == Columns)
2331-
|| (start_col <= cmdline_col_off
2331+
|| (start_col == cmdline_col_off
23322332
&& end_col == cmdline_col_off + cmdline_width))
23332333
&& c1 == ' ' && c2 == ' ' && attr == 0
23342334
#ifdef FEAT_PROP_POPUP

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,8 @@ static char *(features[]) =
729729

730730
static int included_patches[] =
731731
{ /* Add new patch number below this line */
732+
/**/
733+
1900,
732734
/**/
733735
1899,
734736
/**/

0 commit comments

Comments
 (0)