diff options
author | John Wiegley <johnw@newartisans.com> | 2017-12-01 00:44:17 -0800 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2017-12-01 00:44:17 -0800 |
commit | af8b961716e4338b779a916b5ea203fc4ba63309 (patch) | |
tree | 072cbe283fb829b1aff8c6de47d07de1238b2a93 /lisp/use-package/use-package.el | |
parent | 1a09f8fef22d477c2a04fdf4bcda62f26d818a6f (diff) | |
download | emacs-af8b961716e4338b779a916b5ea203fc4ba63309.tar.gz emacs-af8b961716e4338b779a916b5ea203fc4ba63309.tar.bz2 emacs-af8b961716e4338b779a916b5ea203fc4ba63309.zip |
Change the :config default, if none has been set in vars
Diffstat (limited to 'lisp/use-package/use-package.el')
-rw-r--r-- | lisp/use-package/use-package.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/use-package/use-package.el b/lisp/use-package/use-package.el index d55a4c0c437..0983500e3a9 100644 --- a/lisp/use-package/use-package.el +++ b/lisp/use-package/use-package.el @@ -1780,7 +1780,7 @@ this file. Usage: (unless (plist-member args* :init) (plist-put args* :init nil)) (unless (plist-member args* :config) - (plist-put args* :config nil)) + (plist-put args* :config '(t))) args*) (and use-package-always-defer (list :deferred t)))))) |