comparison src/elhash.c @ 432:3a7e78e1142d r21-2-24

Import from CVS: tag r21-2-24
author cvs
date Mon, 13 Aug 2007 11:29:58 +0200
parents a5df635868b2
children 9d177e8d4150
comparison
equal deleted inserted replaced
431:a97165e56215 432:3a7e78e1142d
929 } 929 }
930 930
931 static void 931 static void
932 enlarge_hash_table (Lisp_Hash_Table *ht) 932 enlarge_hash_table (Lisp_Hash_Table *ht)
933 { 933 {
934 size_t new_size = 934 size_t new_size =
935 hash_table_size ((size_t) ((double) ht->size * ht->rehash_size)); 935 hash_table_size ((size_t) ((double) ht->size * ht->rehash_size));
936 resize_hash_table (ht, new_size); 936 resize_hash_table (ht, new_size);
937 } 937 }
938 938
939 static hentry * 939 static hentry *