]> granicus.if.org Git - vim/commitdiff
patch 8.2.0460: build failure because of wrong feature name v8.2.0460
authorBram Moolenaar <Bram@vim.org>
Thu, 26 Mar 2020 22:13:34 +0000 (23:13 +0100)
committerBram Moolenaar <Bram@vim.org>
Thu, 26 Mar 2020 22:13:34 +0000 (23:13 +0100)
Problem:    Build failure because of wrong feature name.
Solution:   Correct feature name.

src/evalfunc.c
src/version.c

index 8834d0542705b90a743a723ff8b7396337fb72e3..b37dbb3810fe682323a4a0fba069da20c1385297 100644 (file)
@@ -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
index 9cbdec68912b679dc01149287598e2499c4be953..758895465a9aba7fb978846f0990758db1a14d54 100644 (file)
@@ -738,6 +738,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    460,
 /**/
     459,
 /**/