Skip to content

Commit ffa4cf3

Browse files
committed
fix: Ensure avoid file messages
1 parent 47e4b98 commit ffa4cf3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lisp/_prepare.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,9 +1155,9 @@ This uses function `locate-dominating-file' to look up directory tree."
11551155
(unless inhibit-config
11561156
;; `early-init.el' is supported after 27.1
11571157
(when (version<= "27" emacs-version)
1158-
(load early-init-file t))
1159-
(load eask-dot-emacs-file t)
1160-
(load user-init-file t)))
1158+
(load early-init-file t t))
1159+
(load eask-dot-emacs-file t t)
1160+
(load user-init-file t t)))
11611161
(ansi-green (if inhibit-config "skipped ✗" "done ✓")))))
11621162

11631163
(defmacro eask-start (&rest body)

0 commit comments

Comments
 (0)