]> git.eshelyaron.com Git - emacs.git/commitdiff
Add 'errors as another option to `use-package-verbose'
authorJohn Wiegley <johnw@newartisans.com>
Mon, 4 Dec 2017 07:05:17 +0000 (23:05 -0800)
committerJohn Wiegley <johnw@newartisans.com>
Mon, 4 Dec 2017 07:05:17 +0000 (23:05 -0800)
up-core.el

index e66d9510b1eef37abef68537cb9c6283caed3f88..1476f7568895bb510a635bfadae020db89611f69 100644 (file)
@@ -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)