diff options
Diffstat (limited to 'lisp/use-package')
-rw-r--r-- | lisp/use-package/use-package.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/use-package/use-package.el b/lisp/use-package/use-package.el index 4b425242ed1..99646e2690a 100644 --- a/lisp/use-package/use-package.el +++ b/lisp/use-package/use-package.el @@ -1132,10 +1132,8 @@ deferred until the prefix key sequence is pressed." (list t)))))) (if (plist-get state :deferred) (unless (or (null config-body) (equal config-body '(t))) - `((progn - (eval-after-load ,(if (symbolp name) `',name name) - ',(macroexp-progn config-body)) - t))) + `((eval-after-load ,(if (symbolp name) `',name name) + ',(macroexp-progn config-body)))) (use-package--with-elapsed-timer (format "Loading package %s" name) (if use-package-expand-minimally |