Skip to content

Commit bd5e622

Browse files
committed
patch 8.2.0460: build failure because of wrong feature name
Problem: Build failure because of wrong feature name. Solution: Correct feature name.
1 parent 15c4760 commit bd5e622

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/evalfunc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,7 @@ static funcentry_T global_functions[] =
915915
{"term_dumpwrite", 2, 3, FEARG_2, ret_void, TERM_FUNC(f_term_dumpwrite)},
916916
{"term_getaltscreen", 1, 1, FEARG_1, ret_number, TERM_FUNC(f_term_getaltscreen)},
917917
{"term_getansicolors", 1, 1, FEARG_1, ret_list_string,
918-
#if defined(TERMINAL) && (defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS))
918+
#if defined(FEAT_TERMINAL) && (defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS))
919919
f_term_getansicolors
920920
#else
921921
NULL
@@ -934,7 +934,7 @@ static funcentry_T global_functions[] =
934934
{"term_scrape", 2, 2, FEARG_1, ret_list_dict_any, TERM_FUNC(f_term_scrape)},
935935
{"term_sendkeys", 2, 2, FEARG_1, ret_void, TERM_FUNC(f_term_sendkeys)},
936936
{"term_setansicolors", 2, 2, FEARG_1, ret_void,
937-
#if defined(TERMINAL) && (defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS))
937+
#if defined(FEAT_TERMINAL) && (defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS))
938938
f_term_setansicolors
939939
#else
940940
NULL

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,8 @@ static char *(features[]) =
738738

739739
static int included_patches[] =
740740
{ /* Add new patch number below this line */
741+
/**/
742+
460,
741743
/**/
742744
459,
743745
/**/

0 commit comments

Comments
 (0)