From 03c6a352bfb00b5410ce00a0021de73d36a9bdda Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 20 Nov 2020 13:36:37 -0500 Subject: [PATCH] Ensure site subdirs.el are loaded --- bin/doom | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/doom b/bin/doom index 3b353c802..816900479 100755 --- a/bin/doom +++ b/bin/doom @@ -71,6 +71,11 @@ ;; HACK Load `cl' and site files manually to prevent polluting logs and stdout ;; with deprecation and/or file load messages. (quiet! (if EMACS27+ (require 'cl)) + (let ((tail load-path)) + (while tail + (let ((default-directory (car tail))) + (load (expand-file-name "subdirs.el") t t t) + (setq tail (cdr tail))))) (load "site-start" t t)) (kill-emacs