Problem: Vim9: test failure.
Solution: Add missing changes to hashtab.
return FAIL;
++ht->ht_used;
+ ++ht->ht_changed;
if (hi->hi_key == NULL)
++ht->ht_filled;
hi->hi_key = key;
hash_remove(hashtab_T *ht, hashitem_T *hi)
{
--ht->ht_used;
+ ++ht->ht_changed;
hi->hi_key = HI_KEY_REMOVED;
hash_may_resize(ht, 0);
}
ht->ht_array = newarray;
ht->ht_mask = newmask;
ht->ht_filled = ht->ht_used;
+ ++ht->ht_changed;
ht->ht_error = FALSE;
return OK;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1209,
/**/
1208,
/**/