From 064701dc2048722a7ebd5b602e8c060bf3da538e Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Fri, 30 Dec 2016 17:41:26 -0500 Subject: [PATCH] Increase the obarray size. In a typical GNU/Linux/X11 build, we wind up with over 15k symbols by the time we've started. The old obarray size ensured an average chain length of 10 or more. * src/lread.c (OBARRAY_SIZE): Increase to 15121. --- src/lread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lread.c b/src/lread.c index 35348f1ddb8..6005a7ce2d2 100644 --- a/src/lread.c +++ b/src/lread.c @@ -4116,7 +4116,7 @@ OBARRAY defaults to the value of `obarray'. */) return Qnil; } -#define OBARRAY_SIZE 1511 +#define OBARRAY_SIZE 15121 void init_obarray (void) -- 2.39.5