# HG changeset patch # User Bram Moolenaar # Date 1594735206 -7200 # Node ID 8de90d2965a3bf2a021efdb5a60b245ed0ea3678 # Parent 3f34b98e3b3fff531cfa6ea22d3894afe3ebe866 patch 8.2.1208: build failure Commit: https://github.com/vim/vim/commit/49fe0d6b289ee640cf5c49b1704bbbd641a0237d Author: Bram Moolenaar Date: Tue Jul 14 15:47:23 2020 +0200 patch 8.2.1208: build failure Problem: Build failure. Solution: Add missing change. diff --git a/src/structs.h b/src/structs.h --- 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 --- 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,