Skip to content

Commit 47e4b98

Browse files
committed
feat: Revert printing behaviour when loading user files
1 parent b87884c commit 47e4b98

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lisp/_prepare.el

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1116,6 +1116,7 @@ This uses function `locate-dominating-file' to look up directory tree."
11161116
"Try load the Eask-file in START-PATH."
11171117
(when-let* ((files (eask--find-files start-path))
11181118
(file (car files)))
1119+
;; Revert printing behaviour when loading Eask-file.
11191120
(eask--unsilent (eask-file-load file))))
11201121

11211122
(defmacro eask--with-hooks (&rest body)
@@ -1149,8 +1150,10 @@ This uses function `locate-dominating-file' to look up directory tree."
11491150
(let ((inhibit-config (eask-quick-p)))
11501151
(eask-with-progress
11511152
(ansi-green "Loading configuration... ")
1152-
(eask-with-verbosity 'all
1153+
;; Revert printing behaviour when loading user files.
1154+
(eask--unsilent
11531155
(unless inhibit-config
1156+
;; `early-init.el' is supported after 27.1
11541157
(when (version<= "27" emacs-version)
11551158
(load early-init-file t))
11561159
(load eask-dot-emacs-file t)

0 commit comments

Comments
 (0)