changeset 21315:8de90d2965a3 v8.2.1208

patch 8.2.1208: build failure Commit: https://github.com/vim/vim/commit/49fe0d6b289ee640cf5c49b1704bbbd641a0237d Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 14 15:47:23 2020 +0200 patch 8.2.1208: build failure Problem: Build failure. Solution: Add missing change.
author Bram Moolenaar <Bram@vim.org>
date Tue, 14 Jul 2020 16:00:06 +0200
parents 3f34b98e3b3f
children 9681f65ba9db
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
@@ -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
--- 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,