aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Raeburn2016-12-30 17:41:26 -0500
committerKen Raeburn2016-12-30 17:41:26 -0500
commit064701dc2048722a7ebd5b602e8c060bf3da538e (patch)
treea6090b6b8fa9d65dd734ada9104934084e3ba635 /src
parentb0239945a36dafae908259a9a29c2a166ff53cee (diff)
downloademacs-064701dc2048722a7ebd5b602e8c060bf3da538e.tar.gz
emacs-064701dc2048722a7ebd5b602e8c060bf3da538e.zip
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.
Diffstat (limited to 'src')
-rw-r--r--src/lread.c2
1 files changed, 1 insertions, 1 deletions
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'. */)
4116 return Qnil; 4116 return Qnil;
4117} 4117}
4118 4118
4119#define OBARRAY_SIZE 1511 4119#define OBARRAY_SIZE 15121
4120 4120
4121void 4121void
4122init_obarray (void) 4122init_obarray (void)