Skip to content

Commit f2536df

Browse files
bcc32fnussbaum
authored andcommitted
[core] Remove :size argument when calling make-hash-table
It's not measurably faster or slower according to: hyperfine 'emacs -nw -batch -u $USER' And at least in tests, these numbers are gross overestimates of how many packages will be stored in the hash tables.
1 parent a94bba5 commit f2536df

3 files changed

+174
-174
lines changed

core/core-configuration-layer.el

+4-4
Original file line numberDiff line numberDiff line change
@@ -378,13 +378,13 @@ file. It can be overridden by users inside `dotspacemacs/user-init'.")
378378
(defvar configuration-layer--layers-dependencies '()
379379
"List of layers declared in `layers.el' files.")
380380

381-
(defvar configuration-layer--indexed-layers (make-hash-table :size 1024)
381+
(defvar configuration-layer--indexed-layers (make-hash-table)
382382
"Hash map to index `cfgl-layer' objects by their names.")
383383

384384
(defvar configuration-layer--used-packages '()
385385
"An alphabetically sorted list of used package names.")
386386

387-
(defvar configuration-layer--indexed-packages (make-hash-table :size 2048)
387+
(defvar configuration-layer--indexed-packages (make-hash-table)
388388
"Hash map to index `cfgl-package' objects by their names.")
389389

390390
(defvar configuration-layer--check-new-version-error-packages nil
@@ -1362,7 +1362,7 @@ discovery."
13621362
;; must have the final word on configuration choices. Let
13631363
;; `dotspacemacs-directory' override the private directory if it exists.
13641364
(when refresh-index
1365-
(setq configuration-layer--indexed-layers (make-hash-table :size 1024)))
1365+
(setq configuration-layer--indexed-layers (make-hash-table)))
13661366
(spacemacs-buffer/set-mode-line "Indexing layers..." t)
13671367
(let ((search-paths (append
13681368
;; layers shipped with spacemacs
@@ -2264,7 +2264,7 @@ Rollback slots are stored in
22642264
22652265
The keys are package names and the values are lists of package names that
22662266
depends on it."
2267-
(let ((result (make-hash-table :size 1024)))
2267+
(let ((result (make-hash-table)))
22682268
(dolist (pkg package-alist)
22692269
(let* ((pkg-sym (car pkg))
22702270
(deps (configuration-layer//get-package-deps-from-alist pkg-sym)))

tests/core/core-configuration-layer-ftest.el

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
(dotspacemacs-configuration-layers '(emacs-lisp
3333
(git :variables foo 'bar)))
3434
configuration-layer--used-layers
35-
(configuration-layer--indexed-layers (make-hash-table :size 1024)))
35+
(configuration-layer--indexed-layers (make-hash-table)))
3636
(configuration-layer/discover-layers 'refresh-index)
3737
(configuration-layer//declare-used-layers dotspacemacs-configuration-layers)
3838
(should (eq 'spacemacs-bootstrap
@@ -43,7 +43,7 @@
4343
(dotspacemacs-configuration-layers '(emacs-lisp
4444
(git :variables foo 'bar)))
4545
configuration-layer--used-layers
46-
(configuration-layer--indexed-layers (make-hash-table :size 1024)))
46+
(configuration-layer--indexed-layers (make-hash-table)))
4747
(configuration-layer/discover-layers 'refresh-index)
4848
(configuration-layer//declare-used-layers dotspacemacs-configuration-layers)
4949
(should (eq 'spacemacs-defaults (cadr configuration-layer--used-layers)))))
@@ -53,7 +53,7 @@
5353
(dotspacemacs-configuration-layers '(emacs-lisp
5454
(git :variables foo 'bar)))
5555
configuration-layer--used-layers
56-
(configuration-layer--indexed-layers (make-hash-table :size 1024)))
56+
(configuration-layer--indexed-layers (make-hash-table)))
5757
(configuration-layer/discover-layers 'refresh-index)
5858
(configuration-layer//declare-used-layers dotspacemacs-configuration-layers)
5959
(should (eq 'spacemacs-base (caddr configuration-layer--used-layers)))))

0 commit comments

Comments
 (0)