Problem: GTK fails to compile with !FEAT_PROP_POPUP
Solution: Correct syntax under #ifdef
(Drew Vogel)
related: #18708
Signed-off-by: Drew Vogel <dvogel@github>
Signed-off-by: Christian Brabandt <cb@256bit.org>
char_u *p = ptr - (mb_off + 1);
chartabsize_T cts;
- init_chartabsize_arg(&cts, wp, lnum, wlv.vcol
+
+ colnr_T init_colnr = wlv.vcol;
# ifdef FEAT_PROP_POPUP
- - vcol_first_char,
+ init_colnr -= vcol_first_char;
# endif
- line, p);
+ init_chartabsize_arg(&cts, wp, lnum, init_colnr, line, p);
+
# ifdef FEAT_PROP_POPUP
// do not want virtual text counted here
cts.cts_has_prop_with_text = FALSE;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1902,
/**/
1901,
/**/