Problem: Patch v9.2.0185 was wrong
Solution: Revert patch v9.2.0185, root cause fixed in v9.2.0197
(Hirohito Higashi).
related: #19730
related: #19734
closes: #19749
Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
if (wp == NULL)
{
// Fill the TabPageIdxs[] array for clicking in the tab pagesline.
- int end_col = firstwin->w_wincol + topframe->fr_width;
- if (end_col > Columns)
- end_col = Columns;
col = firstwin->w_wincol;
len = 0;
p = buf;
for (n = 0; tabtab[n].start != NULL; n++)
{
len += vim_strnsize(p, (int)(tabtab[n].start - p));
- while (col < len && col < end_col)
+ while (col < len)
TabPageIdxs[col++] = fillchar;
- if (col >= end_col)
- break;
p = tabtab[n].start;
fillchar = tabtab[n].userhl;
}
- while (col < end_col)
+ while (col < firstwin->w_wincol + topframe->fr_width)
TabPageIdxs[col++] = fillchar;
}
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 203,
/**/
202,
/**/