From: Eli Zaretskii Date: Fri, 13 Nov 2015 09:52:53 +0000 (+0200) Subject: * lisp/loadup.el: Enlarge the size of the hash table to 80000. X-Git-Tag: emacs-25.0.90~814 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=afd3e98f6559d8294e08c8f7b14b6c0ced097ba5;p=emacs.git * lisp/loadup.el: Enlarge the size of the hash table to 80000. Backport. --- 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)