projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd2afa5
)
Fix :after keyword
author
Radon Rosborough
<radon.neon@gmail.com>
Sun, 19 Mar 2017 15:33:30 +0000
(08:33 -0700)
committer
Radon Rosborough
<radon.neon@gmail.com>
Sun, 19 Mar 2017 15:33:30 +0000
(08:33 -0700)
Commit [1] broke the functionality of :after (see [2]) due to an
extraneous quote being added.
[1]:
bd2afa53c7580d23ed8008267b80e1834b6e6600
[2]: https://github.com/jwiegley/use-package/pull/433#issuecomment-
287606553
lisp/use-package/use-package.el
patch
|
blob
|
history
diff --git
a/lisp/use-package/use-package.el
b/lisp/use-package/use-package.el
index 2943dafe6b0f664811ad8f3df2ed57290ba9fb3c..c7d472e2eb4649a3424d1ef3eda880b387923d2e 100644
(file)
--- a/
lisp/use-package/use-package.el
+++ b/
lisp/use-package/use-package.el
@@
-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)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;