Skip to content

Commit

Permalink
patch 8.2.4239: build fails with unusual configuration
Browse files Browse the repository at this point in the history
Problem:    Build fails with unusual configuration.
Solution:   Adjust #ifdef. (closes #9651)
  • Loading branch information
brammool committed Jan 28, 2022
1 parent bd8168c commit ddd815b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/testing.c
Original file line number Diff line number Diff line change
Expand Up @@ -1345,7 +1345,7 @@ f_test_gui_mouse_event(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
void
f_test_gui_tabline_event(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
{
# ifdef FEAT_GUI
# ifdef FEAT_GUI_TABLINE
int tabnr;

if (check_for_number_arg(argvars, 0) == FAIL)
Expand All @@ -1361,7 +1361,7 @@ f_test_gui_tabline_event(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
void
f_test_gui_tabmenu_event(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
{
# ifdef FEAT_GUI
# ifdef FEAT_GUI_TABLINE
int tabnr;
int event;

Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -750,6 +750,8 @@ static char *(features[]) =

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

0 comments on commit ddd815b

Please sign in to comment.