diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-07-14 15:47:23 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-07-14 15:47:23 +0200 |
commit | 49fe0d6b289ee640cf5c49b1704bbbd641a0237d (patch) | |
tree | 570f1687204b1bd9cd912cb18c237653a339168f | |
parent | 7ce85be63b37ab4ec791dde93a380e8a4d8a04dd (diff) | |
download | vim-git-49fe0d6b289ee640cf5c49b1704bbbd641a0237d.tar.gz |
patch 8.2.1208: build failurev8.2.1208
Problem: Build failure.
Solution: Add missing change.
-rw-r--r-- | src/structs.h | 1 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h index 4a0c10a45..68a9ba958 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1250,6 +1250,7 @@ typedef struct hashtable_S // array is "ht_mask" + 1) long_u ht_used; // number of items used long_u ht_filled; // number of items used + removed + int ht_changed; // incremented when adding or removing an item int ht_locked; // counter for hash_lock() int ht_error; // when set growing failed, can't add more // items before growing works diff --git a/src/version.c b/src/version.c index 490e5a3dc..3997ccf00 100644 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1208, +/**/ 1207, /**/ 1206, |