summaryrefslogtreecommitdiff
path: root/libguile/environments.c
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>2003-02-19 16:16:46 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>2003-02-19 16:16:46 +0000
commit231a4ea849085615dc2d7bd805c8e8025495bfe2 (patch)
tree8a06f100bd487c2806608489f6190e03c3656891 /libguile/environments.c
parent110beb83a514da75c488448e4118219c2da8df19 (diff)
downloadguile-231a4ea849085615dc2d7bd805c8e8025495bfe2.tar.gz
* environments.c (DEFAULT_OBARRAY_SIZE): Changed from 137 to 31
(since hash tables now adapt their size). * modules.c (scm_modules_prehistory): Changed from 2001 to 1533 (current number of prehistory bindings; hashtable code will select a prime which is greater than this value). * symbols.c (scm_symbols_prehistory): Changed from 1009 to 2139 (current number of initial symbols). * properties.c (scm_init_properties): Don't specify size of scm_properties_whash. * objprop.c (scm_init_objprop): Don't specify size of scm_object_whash. * keywords.c (scm_init_keywords): Don't specify a hash table size.
Diffstat (limited to 'libguile/environments.c')
-rw-r--r--libguile/environments.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/environments.c b/libguile/environments.c
index 074c49cd2..82447cdbe 100644
--- a/libguile/environments.c
+++ b/libguile/environments.c
@@ -59,7 +59,7 @@
scm_t_bits scm_tc16_environment;
scm_t_bits scm_tc16_observer;
-#define DEFAULT_OBARRAY_SIZE 137
+#define DEFAULT_OBARRAY_SIZE 31
SCM scm_system_environment;