changeset 19807:13f34e46c269 v8.2.0460

patch 8.2.0460: build failure because of wrong feature name Commit: https://github.com/vim/vim/commit/bd5e622bfa12bd80a5ce9406704205400e3faa6a Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Thu, 26 Mar 2020 23:15:03 +0100
parents 4df7ed596e73
children b57aba447d4e
files src/evalfunc.c src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,