]> git.eshelyaron.com Git - emacs.git/commitdiff
Respect keyword ordering in use-package-deferring-keywords
authorJohn Wiegley <johnw@newartisans.com>
Wed, 6 Dec 2017 14:37:07 +0000 (06:37 -0800)
committerJohn Wiegley <johnw@newartisans.com>
Wed, 6 Dec 2017 14:37:07 +0000 (06:37 -0800)
Relates to https://github.com/jwiegley/use-package/issues/565

lisp/use-package/use-package-core.el

index 7ed5b7482e14e9e3463eb5030f7bc586b9605a61..364ea90ef81cd465e562323d354a42745da44b1b 100644 (file)
@@ -108,8 +108,8 @@ declaration is incorrect."
     :mode
     :magic
     :magic-fallback
-    :commands
-    :hook)
+    :hook
+    :commands)
   "Unless `:demand' is used, keywords in this list imply deferred loading."
   :type '(repeat symbol)
   :group 'use-package)