diff options
| author | Eli Zaretskii | 2015-11-13 11:52:53 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2015-11-13 21:59:15 +0200 |
| commit | afd3e98f6559d8294e08c8f7b14b6c0ced097ba5 (patch) | |
| tree | 3aadda7abc38a7db23e3f5b9040b870c097c6483 /lisp | |
| parent | 27b93ec0a5fd2268d2ebfa338df6e1434cb7d451 (diff) | |
| download | emacs-afd3e98f6559d8294e08c8f7b14b6c0ced097ba5.tar.gz emacs-afd3e98f6559d8294e08c8f7b14b6c0ced097ba5.zip | |
* lisp/loadup.el: Enlarge the size of the hash table to 80000.
Backport.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/loadup.el | 2 |
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 @@ | |||
| 73 | 73 | ||
| 74 | (if (eq t purify-flag) | 74 | (if (eq t purify-flag) |
| 75 | ;; Hash consing saved around 11% of pure space in my tests. | 75 | ;; Hash consing saved around 11% of pure space in my tests. |
| 76 | (setq purify-flag (make-hash-table :test 'equal :size 70000))) | 76 | (setq purify-flag (make-hash-table :test 'equal :size 80000))) |
| 77 | 77 | ||
| 78 | (message "Using load-path %s" load-path) | 78 | (message "Using load-path %s" load-path) |
| 79 | 79 | ||