]> git.eshelyaron.com Git - emacs.git/commitdiff
Increase the obarray size.
authorKen Raeburn <raeburn@raeburn.org>
Fri, 30 Dec 2016 22:41:26 +0000 (17:41 -0500)
committerKen Raeburn <raeburn@raeburn.org>
Fri, 30 Dec 2016 22:41:26 +0000 (17:41 -0500)
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

index 35348f1ddb8f8952cf86a29fe0a19c233f0a1302..6005a7ce2d29a5867cb592d56f7f5329e55722ef 100644 (file)
@@ -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)