From 3228369d736aca8fcb177246506f6ca453b621ed Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 14 Jun 2018 19:50:27 +0200 Subject: [PATCH] Fix void-function errors from doom//reload Because certain commands aren't available without core-dispatcher. --- core/autoload/help.el | 1 + 1 file changed, 1 insertion(+) diff --git a/core/autoload/help.el b/core/autoload/help.el index 0888a78dd..2ca6c3208 100644 --- a/core/autoload/help.el +++ b/core/autoload/help.el @@ -191,6 +191,7 @@ If called from an interactive session, tries to reload autoloads files (if necessary), reinistalize doom (via `doom-initialize') and reloads your private init.el and config.el. Then runs `doom-reload-hook'." (interactive) + (require 'core-dispatcher) (cond ((and noninteractive (not (daemonp))) (require 'server) (if (not (server-running-p))