From aa53ad2c1b1546615afc849bf73e22d1e0307390 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 15 Sep 2022 23:41:02 +0200 Subject: [PATCH] fix: load subr-x at compile-time in doom.el This is more to nip 27.x issues in the bud, where fewer of subr-x's macros are autoloaded. --- lisp/doom.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/doom.el b/lisp/doom.el index 00e5f2cad..5d5b61e64 100644 --- a/lisp/doom.el +++ b/lisp/doom.el @@ -64,6 +64,7 @@ ;; offensive) optimizations, and load the minimum for all Doom sessions. ;; ;;; Code: +(eval-when-compile (require 'subr-x)) ;;; Version checks (eval-and-compile ; Check version at both compile and runtime.