From d70d70843a3c1b1fbb12267368ae24409d8e950e Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sat, 21 Mar 2015 03:49:08 -0500 Subject: [PATCH] Correction to an eval-after-load expansion --- lisp/use-package/use-package.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/use-package/use-package.el b/lisp/use-package/use-package.el index 5f911e3b718..4c8aad9f57a 100644 --- a/lisp/use-package/use-package.el +++ b/lisp/use-package/use-package.el @@ -864,7 +864,7 @@ deferred until the prefix key sequence is pressed." body (list t)))))) (if (plist-get state :deferred) - (unless (equal config-body '(t)) + (unless (or (null config-body) (equal config-body '(t))) `((eval-after-load ',name-symbol ',(macroexp-progn config-body)))) (use-package--with-elapsed-timer -- 2.39.2