diff options
Diffstat (limited to 'src/hashtab.c')
-rw-r--r-- | src/hashtab.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/hashtab.c b/src/hashtab.c index 658bfb969..4bf41e0da 100644 --- a/src/hashtab.c +++ b/src/hashtab.c @@ -70,7 +70,6 @@ hash_init(hashtab_T *ht) ht->ht_mask = HT_INIT_SIZE - 1; } -#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL) || defined(PROTO) /* * Free the array of a hash table. Does not free the items it contains! * If "ht" is not freed then you should call hash_init() next! @@ -104,7 +103,6 @@ hash_clear_all(hashtab_T *ht, int off) } hash_clear(ht); } -#endif /* * Find "key" in hashtable "ht". "key" must not be NULL. |