summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2013-10-15 10:37:27 -0700
committerJohn Wiegley <johnw@newartisans.com>2013-10-15 10:37:27 -0700
commitc3cbe3a69af9c719736521978a78645a75cbbaee (patch)
tree97c68ac157218d4ee8973bfb636e764e73eadf51
parente8b5ea3b7008cf6009087ca3fb4b962d0c2f4150 (diff)
parenta116fc2136f66281846653b974413147a9765260 (diff)
downloademacs-c3cbe3a69a.tar.gz
Merge pull request from PhilHudson/master
Properly enable runtime dependency for :idle stanza (issue https://github.com/jwiegley/use-package/issues/60) GitHub-reference: https://github.com/jwiegley/use-package/issues/61
-rw-r--r--lisp/use-package/use-package.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/use-package/use-package.el b/lisp/use-package/use-package.el
index 736228742c8..316e37ee330 100644
--- a/lisp/use-package/use-package.el
+++ b/lisp/use-package/use-package.el
@@ -542,6 +542,7 @@ For full documentation. please see commentary.
(when idle-body
(setq init-body
`(progn
+ (require 'use-package)
(use-package-init-on-idle (lambda () ,idle-body))
,init-body)))