From 04f69f1764301264c9d699be4cec2286249049b9 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 13 Nov 2015 11:52:53 +0200 Subject: [PATCH] * lisp/loadup.el: Enlarge the size of the hash table to 80000. --- lisp/loadup.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/loadup.el b/lisp/loadup.el index fef111f6611..f0caa8be349 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -73,7 +73,7 @@ (if (eq t purify-flag) ;; Hash consing saved around 11% of pure space in my tests. - (setq purify-flag (make-hash-table :test 'equal :size 70000))) + (setq purify-flag (make-hash-table :test 'equal :size 80000))) (message "Using load-path %s" load-path) -- 2.39.2