forked from aniani/vim
patch 8.2.0395: build fails with FEAT_EVAL but without FEAT_MENU
Problem: Build fails with FEAT_EVAL but without FEAT_MENU. Solution: Add #ifdef. (John Marriott)
This commit is contained in:
@@ -646,7 +646,9 @@ static funcentry_T global_functions[] =
|
|||||||
{"matchstr", 2, 4, FEARG_1, ret_string, f_matchstr},
|
{"matchstr", 2, 4, FEARG_1, ret_string, f_matchstr},
|
||||||
{"matchstrpos", 2, 4, FEARG_1, ret_list_any, f_matchstrpos},
|
{"matchstrpos", 2, 4, FEARG_1, ret_list_any, f_matchstrpos},
|
||||||
{"max", 1, 1, FEARG_1, ret_any, f_max},
|
{"max", 1, 1, FEARG_1, ret_any, f_max},
|
||||||
|
#ifdef FEAT_MENU
|
||||||
{"menu_info", 1, 2, FEARG_1, ret_dict_any, f_menu_info},
|
{"menu_info", 1, 2, FEARG_1, ret_dict_any, f_menu_info},
|
||||||
|
#endif
|
||||||
{"min", 1, 1, FEARG_1, ret_any, f_min},
|
{"min", 1, 1, FEARG_1, ret_any, f_min},
|
||||||
{"mkdir", 1, 3, FEARG_1, ret_number, f_mkdir},
|
{"mkdir", 1, 3, FEARG_1, ret_number, f_mkdir},
|
||||||
{"mode", 0, 1, FEARG_1, ret_string, f_mode},
|
{"mode", 0, 1, FEARG_1, ret_string, f_mode},
|
||||||
|
@@ -738,6 +738,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
395,
|
||||||
/**/
|
/**/
|
||||||
394,
|
394,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user