From c6931db3f8cb99a4acb2be6b19c9a04208c997f2 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 12 Mar 2018 12:54:21 -0400 Subject: [PATCH] Fix module count in benchmark --- core/core-packages.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-packages.el b/core/core-packages.el index 29791f365..7670544ec 100644 --- a/core/core-packages.el +++ b/core/core-packages.el @@ -133,7 +133,7 @@ missing) and shouldn't be deleted.") ;; load-path are concerned, but I don't mind a [small] margin of ;; error in the plugin count in exchange for faster startup. (- (length load-path) (length doom-site-load-path)) - (hash-table-size doom-modules) + (hash-table-count doom-modules) (or doom-init-time (setq doom-init-time (float-time (time-subtract (current-time) before-init-time))))))