From: John Wiegley Date: Mon, 16 Mar 2015 07:48:55 +0000 (-0500) Subject: Output Compiling message only if verbose is enabled X-Git-Tag: emacs-29.0.90~1306^2~15^2~383 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4029030eb564ef553d9135a6ec576786b0a0ea2a;p=emacs.git Output Compiling message only if verbose is enabled --- diff --git a/lisp/use-package/use-package.el b/lisp/use-package/use-package.el index 638a16ee992..c1e5c36fb88 100644 --- a/lisp/use-package/use-package.el +++ b/lisp/use-package/use-package.el @@ -521,7 +521,8 @@ this file. Usage: (plist-get args* :defines)) (with-demoted-errors ,(format "Error in %s: %%S" name-string) - (message "Compiling package %s" ,name-string) + (if use-package-verbose + (message "Compiling package %s" ,name-string)) (require ',name-symbol nil t)))))) (body*