Skip to content

Commit

Permalink
patch 9.0.0209: build error with small features
Browse files Browse the repository at this point in the history
Problem:    Build error with small features.
Solution:   Add #ifdef.
  • Loading branch information
brammool committed Aug 14, 2022
1 parent 9e7e28f commit 677a39f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/drawline.c
Expand Up @@ -2993,7 +2993,11 @@ win_line(
// Don't use "extra_attr" until n_attr_skip is zero.
if (n_attr_skip == 0 && n_attr > 0
&& wlv.draw_state == WL_LINE
&& (!attr_pri || (text_prop_flags & PT_FLAG_OVERRIDE)))
&& (!attr_pri
#ifdef FEAT_PROP_POPUP
|| (text_prop_flags & PT_FLAG_OVERRIDE)
#endif
))
{
#ifdef LINE_ATTR
if (line_attr)
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -735,6 +735,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
209,
/**/
208,
/**/
Expand Down

0 comments on commit 677a39f

Please sign in to comment.