mirror of
https://github.com/vim/vim.git
synced 2025-11-13 22:54:27 -05:00
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>
This commit is contained in:
committed by
Christian Brabandt
parent
185cec2b09
commit
47c30bb03a
@@ -2328,7 +2328,7 @@ screen_fill(
|
|||||||
{
|
{
|
||||||
redraw_cmdline = TRUE;
|
redraw_cmdline = TRUE;
|
||||||
if (((start_col == 0 && end_col == Columns)
|
if (((start_col == 0 && end_col == Columns)
|
||||||
|| (start_col <= cmdline_col_off
|
|| (start_col == cmdline_col_off
|
||||||
&& end_col == cmdline_col_off + cmdline_width))
|
&& end_col == cmdline_col_off + cmdline_width))
|
||||||
&& c1 == ' ' && c2 == ' ' && attr == 0
|
&& c1 == ' ' && c2 == ' ' && attr == 0
|
||||||
#ifdef FEAT_PROP_POPUP
|
#ifdef FEAT_PROP_POPUP
|
||||||
|
|||||||
@@ -729,6 +729,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1900,
|
||||||
/**/
|
/**/
|
||||||
1899,
|
1899,
|
||||||
/**/
|
/**/
|
||||||
|
|||||||
Reference in New Issue
Block a user