Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
patch 8.1.0006: syn_id2cterm_bg() may be undefined
Problem:    syn_id2cterm_bg() may be undefined. (Axel Bender)
Solution:   Adjust #ifdef.
  • Loading branch information
brammool committed May 20, 2018
1 parent d19b234 commit a772baf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/syntax.c
Expand Up @@ -9854,7 +9854,9 @@ syn_id2colors(int hl_id, guicolor_T *fgp, guicolor_T *bgp)
}
#endif

#if defined(FEAT_TERMINAL) || defined(PROTO)
#if (defined(WIN3264) \
&& !defined(FEAT_GUI_W32) \
&& defined(FEAT_TERMGUICOLORS)) || defined(PROTO)
void
syn_id2cterm_bg(int hl_id, int *fgp, int *bgp)
{
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -761,6 +761,8 @@ static char *(features[]) =

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

0 comments on commit a772baf

Please sign in to comment.