Skip to content

Commit

Permalink
patch 8.0.1147: fail to build with tiny features
Browse files Browse the repository at this point in the history
Problem:    Fail to build with tiny features. (Tony Mechelynck)
Solution:   Move #ifdefs.
  • Loading branch information
brammool committed Sep 26, 2017
1 parent 452030e commit 7c456a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/syntax.c
Expand Up @@ -7969,9 +7969,9 @@ do_highlight(
}
else if (STRCMP(key, "GUIFG") == 0)
{
#if defined(FEAT_GUI) || defined(FEAT_EVAL)
char_u **namep = &HL_TABLE()[idx].sg_gui_fg_name;

#if defined(FEAT_GUI) || defined(FEAT_EVAL)
if (!init || !(HL_TABLE()[idx].sg_set & SG_GUI))
{
if (!init)
Expand Down Expand Up @@ -8019,9 +8019,9 @@ do_highlight(
}
else if (STRCMP(key, "GUIBG") == 0)
{
#if defined(FEAT_GUI) || defined(FEAT_EVAL)
char_u **namep = &HL_TABLE()[idx].sg_gui_bg_name;

#if defined(FEAT_GUI) || defined(FEAT_EVAL)
if (!init || !(HL_TABLE()[idx].sg_set & SG_GUI))
{
if (!init)
Expand Down Expand Up @@ -8069,9 +8069,9 @@ do_highlight(
}
else if (STRCMP(key, "GUISP") == 0)
{
#if defined(FEAT_GUI) || defined(FEAT_EVAL)
char_u **namep = &HL_TABLE()[idx].sg_gui_sp_name;

#if defined(FEAT_GUI) || defined(FEAT_EVAL)
if (!init || !(HL_TABLE()[idx].sg_set & SG_GUI))
{
if (!init)
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 */
/**/
1147,
/**/
1146,
/**/
Expand Down

0 comments on commit 7c456a4

Please sign in to comment.