1
0
forked from aniani/vim

patch 8.2.0460: build failure because of wrong feature name

Problem:    Build failure because of wrong feature name.
Solution:   Correct feature name.
This commit is contained in:
Bram Moolenaar
2020-03-26 23:13:34 +01:00
parent 15c476023f
commit bd5e622bfa
2 changed files with 4 additions and 2 deletions

View File

@@ -915,7 +915,7 @@ static funcentry_T global_functions[] =
{"term_dumpwrite", 2, 3, FEARG_2, ret_void, TERM_FUNC(f_term_dumpwrite)}, {"term_dumpwrite", 2, 3, FEARG_2, ret_void, TERM_FUNC(f_term_dumpwrite)},
{"term_getaltscreen", 1, 1, FEARG_1, ret_number, TERM_FUNC(f_term_getaltscreen)}, {"term_getaltscreen", 1, 1, FEARG_1, ret_number, TERM_FUNC(f_term_getaltscreen)},
{"term_getansicolors", 1, 1, FEARG_1, ret_list_string, {"term_getansicolors", 1, 1, FEARG_1, ret_list_string,
#if defined(TERMINAL) && (defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)) #if defined(FEAT_TERMINAL) && (defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS))
f_term_getansicolors f_term_getansicolors
#else #else
NULL NULL
@@ -934,7 +934,7 @@ static funcentry_T global_functions[] =
{"term_scrape", 2, 2, FEARG_1, ret_list_dict_any, TERM_FUNC(f_term_scrape)}, {"term_scrape", 2, 2, FEARG_1, ret_list_dict_any, TERM_FUNC(f_term_scrape)},
{"term_sendkeys", 2, 2, FEARG_1, ret_void, TERM_FUNC(f_term_sendkeys)}, {"term_sendkeys", 2, 2, FEARG_1, ret_void, TERM_FUNC(f_term_sendkeys)},
{"term_setansicolors", 2, 2, FEARG_1, ret_void, {"term_setansicolors", 2, 2, FEARG_1, ret_void,
#if defined(TERMINAL) && (defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)) #if defined(FEAT_TERMINAL) && (defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS))
f_term_setansicolors f_term_setansicolors
#else #else
NULL NULL

View File

@@ -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 */
/**/
460,
/**/ /**/
459, 459,
/**/ /**/