From: John Wiegley Date: Mon, 4 Dec 2017 07:05:17 +0000 (-0800) Subject: Add 'errors as another option to `use-package-verbose' X-Git-Tag: emacs-29.0.90~1306^2~15^2~171 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=36cf79985375ed205e1715154cc6e2d9632c6dd1;p=emacs.git Add 'errors as another option to `use-package-verbose' --- diff --git a/up-core.el b/up-core.el index e66d9510b1e..1476f756889 100644 --- a/up-core.el +++ b/up-core.el @@ -104,7 +104,8 @@ If you customize this, then you should require the `use-package' feature in files that use `use-package', even if these files only contain compiled expansions of the macros. If you don't do so, then the expanded macros do their job silently." - :type '(choice (const :tag "Quiet" nil) + :type '(choice (const :tag "Quiet, without catching errors" errors) + (const :tag "Quiet" nil) (const :tag "Verbose" t) (const :tag "Debug" debug)) :group 'use-package)