Return t' after calling eval-after-load'
Fixes https://github.com/jwiegley/use-package/issues/174
This commit is contained in:
@@ -1070,8 +1070,10 @@ deferred until the prefix key sequence is pressed."
|
||||
(list t))))))
|
||||
(if (plist-get state :deferred)
|
||||
(unless (or (null config-body) (equal config-body '(t)))
|
||||
`((eval-after-load ,(if (symbolp name) `',name name)
|
||||
',(macroexp-progn config-body))))
|
||||
`((progn
|
||||
(eval-after-load ,(if (symbolp name) `',name name)
|
||||
',(macroexp-progn config-body))
|
||||
t)))
|
||||
(use-package--with-elapsed-timer
|
||||
(format "Loading package %s" name)
|
||||
(if use-package-expand-minimally
|
||||
|
||||
Reference in New Issue
Block a user