1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

use lambda around deferred :config forms to compile them, fixes issue

GitHub-reference: https://github.com/jwiegley/use-package/issues/30
This commit is contained in:
Noam Postavsky 2013-08-13 19:25:26 -04:00
parent ac0c9633bc
commit a76d16730d

View File

@ -637,12 +637,12 @@ For full documentation. please see commentary.
,init-body
,(unless (null config-body)
`(eval-after-load ,name-string
(quote
(if ,requires-test
,(macroexpand-all
`(with-elapsed-timer
,(format "Configuring package %s" name-string)
,config-body))))))
`(,(lambda ()
(if ,requires-test
,(macroexpand-all
`(with-elapsed-timer
,(format "Configuring package %s" name-string)
,config-body)))))))
t))
`(if (and ,(or predicate t)
,requires-test)