# HG changeset patch # User Bram Moolenaar # Date 1643381103 -3600 # Node ID 7c233f560a7f4eb109acc322b36de3734c2d3bf3 # Parent f27bab8a8b2a8977bca77dd934f6a7cc309a0949 patch 8.2.4239: build fails with unusual configuration Commit: https://github.com/vim/vim/commit/ddd815ba2a4191992d0f7d7b2902ba76a0db36ef Author: Bram Moolenaar Date: Fri Jan 28 14:39:58 2022 +0000 patch 8.2.4239: build fails with unusual configuration Problem: Build fails with unusual configuration. Solution: Adjust #ifdef. (closes https://github.com/vim/vim/issues/9651) diff --git a/src/testing.c b/src/testing.c --- a/src/testing.c +++ b/src/testing.c @@ -1345,7 +1345,7 @@ f_test_gui_mouse_event(typval_T *argvars 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) @@ -1361,7 +1361,7 @@ f_test_gui_tabline_event(typval_T *argva 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; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4239, +/**/ 4238, /**/ 4237,