mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -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:
parent
bd2afa53c7
commit
9ad6f2ef1a
1 changed files with 1 additions and 1 deletions
|
|
@ -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)))
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue