summaryrefslogtreecommitdiff
path: root/lisp/loadup.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2015-11-13 11:52:53 +0200
committerEli Zaretskii <eliz@gnu.org>2015-11-13 11:52:53 +0200
commit04f69f1764301264c9d699be4cec2286249049b9 (patch)
tree3aadda7abc38a7db23e3f5b9040b870c097c6483 /lisp/loadup.el
parente221d32daf4c3072a5a368bd813f758711dd6ff5 (diff)
downloademacs-04f69f1764301264c9d699be4cec2286249049b9.tar.gz
emacs-04f69f1764301264c9d699be4cec2286249049b9.tar.bz2
emacs-04f69f1764301264c9d699be4cec2286249049b9.zip
* lisp/loadup.el: Enlarge the size of the hash table to 80000.
Diffstat (limited to 'lisp/loadup.el')
-rw-r--r--lisp/loadup.el2
1 files changed, 1 insertions, 1 deletions
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)