]> git.eshelyaron.com Git - emacs.git/commitdiff
Normalize some whitespace and ordering in new code
authorJohn Wiegley <johnw@newartisans.com>
Mon, 4 Dec 2017 17:31:13 +0000 (09:31 -0800)
committerJohn Wiegley <johnw@newartisans.com>
Mon, 4 Dec 2017 17:31:13 +0000 (09:31 -0800)
lisp/use-package/bind-chord.el
lisp/use-package/use-package-chords.el
lisp/use-package/use-package-ensure-system-package.el

index e0827a4230f4b3c0d050aa97c0ee1d395d3b057b..35634b174a3e20e405557b3e945db6294ef3cc3a 100644 (file)
@@ -58,4 +58,5 @@ function symbol (unquoted)."
               key-bindings)))))
 
 (provide 'bind-chord)
+
 ;;; bind-chord.el ends here
index f3e85b4149a9f7a141edfff2c8c2a27579ba01a3..023a9c6b2adc8576d248acd4f9b9080699c5ed4e 100644 (file)
@@ -23,8 +23,6 @@
 (require 'use-package)
 (require 'bind-chord)
 
-(add-to-list 'use-package-keywords :chords t)
-
 (defalias 'use-package-normalize/:chords 'use-package-normalize-binder)
 
 (defun use-package-handler/:chords (name keyword arg rest state)
@@ -44,5 +42,8 @@
                 `(bind-chords :package ,name ,@arg)))))))
     (use-package-handler/:preface name keyword chord-binder rest state)))
 
+(add-to-list 'use-package-keywords :chords t)
+
 (provide 'use-package-chords)
+
 ;;; use-package-chords.el ends here
index e34bb16d7382829d8e2125e6888f40a53e124290..b8fd19d830b9300609e05ee6a57ff34b75d4c33c 100644 (file)
@@ -22,8 +22,6 @@
 (require 'use-package)
 (require 'system-packages)
 
-(add-to-list 'use-package-keywords :ensure-system-package t)
-
 (defun use-package-ensure-system-package-install-command (pack)
   "Return the default install command for `pack'."
   (let ((command
@@ -66,5 +64,8 @@
                     (async-shell-command ,(cdr cons)))) arg)
      body)))
 
+(add-to-list 'use-package-keywords :ensure-system-package t)
+
 (provide 'use-package-ensure-system-package)
+
 ;;; use-package-ensure-system-package.el ends here