aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorBT Templeton <[email protected]>2012-07-04 20:53:46 -0400
committerRobin Templeton <[email protected]>2015-04-18 18:49:08 -0400
commit48ab9a8cda43bd69a34cbdfab4cdb11441e03966 (patch)
treeb0fd3a5a8ec982db5906f8b14dfe2ccb90ff5c86 /lisp
parentf2b0b0d1abf9eb532cbcb7ee9d422882c41a4ab3 (diff)
don't create a hash table for pure space
* lisp/loadup.el: Leave purify-flag as `t' instead of allocating a hash table for hash-consing.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/loadup.el4
1 files changed, 0 insertions, 4 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el
index b911e9f176..51a760a55a 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -63,10 +63,6 @@
(expand-file-name "textmodes" dir)
(expand-file-name "vc" dir)))))
-(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)))
-
(message "Using load-path %s" load-path)
;; This is a poor man's `last', since we haven't loaded subr.el yet.