summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-03-26 23:13:34 +0100
committerBram Moolenaar <Bram@vim.org>2020-03-26 23:13:34 +0100
commitbd5e622bfa12bd80a5ce9406704205400e3faa6a (patch)
tree25672ffef710777a46260e2518587eda795953d4
parent15c476023f3c5fb32eb1936c5eb5f0f5f413f3c7 (diff)
downloadvim-git-bd5e622bfa12bd80a5ce9406704205400e3faa6a.tar.gz
patch 8.2.0460: build failure because of wrong feature namev8.2.0460
Problem: Build failure because of wrong feature name. Solution: Correct feature name.
-rw-r--r--src/evalfunc.c4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/evalfunc.c b/src/evalfunc.c
index 8834d0542..b37dbb381 100644
--- 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
index 9cbdec689..758895465 100644
--- 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,