From e75c41b10dc51838000acbf13b9e48c4dfd4d998 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 5 May 2019 19:38:54 -0400 Subject: [PATCH] Fix autoload/hydras.el autoloads #1388 Caused by autoloads paths not being resolved correctly during generation. --- core/cli/autoloads.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/cli/autoloads.el b/core/cli/autoloads.el index ff68e1eb8..64518f8e5 100644 --- a/core/cli/autoloads.el +++ b/core/cli/autoloads.el @@ -132,7 +132,7 @@ even if it doesn't need reloading!" ;; will be unable to declare autoloads for the built-in autoload.el ;; Emacs package, should $DOOMDIR/autoload.el exist. Not sure why ;; they'd want to though, so it's an acceptable compromise. - (append (list doom-private-dir) + (append (list doom-private-dir doom-emacs-dir) doom-modules-dirs load-path)) cache)