From: Ken Raeburn Date: Fri, 30 Dec 2016 22:41:26 +0000 (-0500) Subject: Increase the obarray size. X-Git-Tag: emacs-26.0.90~985 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=064701dc2048722a7ebd5b602e8c060bf3da538e;p=emacs.git 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. --- 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)