1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 14:30:50 -08:00

Fix :after keyword

Commit [1] broke the functionality of :after (see [2]) due to an
extraneous quote being added.

[1]: bd2afa53c7
[2]: https://github.com/jwiegley/use-package/pull/433#issuecomment-287606553
This commit is contained in:
Radon Rosborough 2017-03-19 08:33:30 -07:00
parent bd2afa53c7
commit 9ad6f2ef1a

View file

@ -1270,7 +1270,7 @@ deferred until the prefix key sequence is pressed."
`(,@(when (eq (plist-get state :defer-install) :ensure)
`((use-package-install-deferred-package
'name :after)))
'(require (quote ,name) nil t))))))
(require (quote ,name) nil t))))))
body)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;