summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-09-16 15:41:09 +0200
committerBram Moolenaar <Bram@vim.org>2020-09-16 15:41:09 +0200
commitfb489af2ec1b181d212a8aa8151d7784b260d01b (patch)
tree527d34dd14f5867845250c73bc2d9d7eae6b4673
parent5e654230777ad21363a929dce3cfe0387da031a7 (diff)
downloadvim-git-8.2.1692.tar.gz
patch 8.2.1692: build fails because TTFLAG_STATIC is missingv8.2.1692
Problem: Build fails because TTFLAG_STATIC is missing. Solution: Include missing change.
-rw-r--r--src/structs.h1
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index 7c3b81e04..85607fcec 100644
--- 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.
diff --git a/src/version.c b/src/version.c
index 2154ddd77..d1ce8f040 100644
--- 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,