Skip to content

Commit

Permalink
fix(_prepare.el): Unsilent in Eask-file by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Nov 18, 2023
1 parent f9f81c9 commit 40d82be
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions lisp/_prepare.el
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,7 @@ This uses function `locate-dominating-file' to look up directory tree."
"Try load the Eask-file in START-PATH."
(when-let* ((files (eask--find-files start-path))
(file (car files)))
(eask-file-load file)))
(eask--unsilent (eask-file-load file))))

(defmacro eask--with-hooks (&rest body)
"Execute BODY with before/after hooks."
Expand Down Expand Up @@ -1256,13 +1256,14 @@ version number. DESCRIPTION is the package description."
((eask-pkg-el) ; if -pkg.el is presented,
(setq skipped t) nil) ; skip it
(t (package-buffer-info)))))) ; default read main package file
(eask-msg (concat
(if eask-package-desc "" "")
"Try constructing the package-descriptor (%s)... "
(cond (eask-package-desc "succeeded!")
(skipped "skipped!")
(t "failed!")))
(file-name-nondirectory file))))
(eask-with-verbosity 'debug
(eask-msg (concat
(if eask-package-desc "" "")
"Try constructing the package-descriptor (%s)... "
(cond (eask-package-desc "succeeded!")
(skipped "skipped!")
(t "failed!")))
(file-name-nondirectory file)))))

(defun eask-f-package-file (file)
"Set package FILE."
Expand Down

0 comments on commit 40d82be

Please sign in to comment.