# HG changeset patch # User Bram Moolenaar # Date 1585260903 -3600 # Node ID 13f34e46c2691e67677fae4a1a4a8b2a040c0457 # Parent 4df7ed596e73756625a5892bc90efc3ffdce3c06 patch 8.2.0460: build failure because of wrong feature name Commit: https://github.com/vim/vim/commit/bd5e622bfa12bd80a5ce9406704205400e3faa6a Author: Bram Moolenaar Date: Thu Mar 26 23:13:34 2020 +0100 patch 8.2.0460: build failure because of wrong feature name Problem: Build failure because of wrong feature name. Solution: Correct feature name. diff --git a/src/evalfunc.c b/src/evalfunc.c --- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -915,7 +915,7 @@ static funcentry_T global_functions[] = {"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_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 #else 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_sendkeys", 2, 2, FEARG_1, ret_void, TERM_FUNC(f_term_sendkeys)}, {"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 #else NULL diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 460, +/**/ 459, /**/ 458,