We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23d26f2 commit 3627f8cCopy full SHA for 3627f8c
init.el
@@ -69,8 +69,9 @@
69
;; stage to provide its functionality to the rest of the modules so we can use
70
;; some new features when configuring them.
71
(when (< emacs-major-version 29)
72
- (mapc (apply-partially #'+load minemacs-core-dir)
73
- (directory-files (concat minemacs-core-dir "backports") nil "\\.el$")))
+ (let ((backports-dir (concat minemacs-core-dir "backports/")))
+ (mapc (apply-partially #'+load backports-dir)
74
+ (directory-files backports-dir nil "\\.el$"))))
75
76
(setq
77
;; Enable debugging on error when Emacs is launched with the "--debug-init"
0 commit comments