changeset 22286:cb883c225368 v8.2.1692

patch 8.2.1692: build fails because TTFLAG_STATIC is missing Commit: https://github.com/vim/vim/commit/fb489af2ec1b181d212a8aa8151d7784b260d01b Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 16 15:41:09 2020 +0200 patch 8.2.1692: build fails because TTFLAG_STATIC is missing Problem: Build fails because TTFLAG_STATIC is missing. Solution: Include missing change.
author Bram Moolenaar <Bram@vim.org>
date Wed, 16 Sep 2020 15:45:04 +0200
parents eb6e8ba37f36
children 5f6279cda301
files src/structs.h src/version.c
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/structs.h
+++ b/src/structs.h
@@ -1374,6 +1374,7 @@ struct type_S {
 #define TTFLAG_VARARGS	1	    // func args ends with "..."
 #define TTFLAG_OPTARG	2	    // func arg type with "?"
 #define TTFLAG_BOOL_OK	4	    // can be converted to bool
+#define TTFLAG_STATIC	8	    // one of the static types, e.g. t_any
 
 /*
  * Structure to hold an internal variable without a name.
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1692,
+/**/
     1691,
 /**/
     1690,