]> git.eshelyaron.com Git - emacs.git/commitdiff
Whitespace cleanups
authorJohn Wiegley <johnw@newartisans.com>
Sat, 21 Mar 2015 08:30:52 +0000 (03:30 -0500)
committerJohn Wiegley <johnw@newartisans.com>
Sat, 21 Mar 2015 08:30:52 +0000 (03:30 -0500)
lisp/use-package/bind-key.el

index 4cf6cf8708bc1b8383824580c0fc346c24985305..083c8b1c0a687305a3442e6ce436c4419aad6310 100644 (file)
@@ -221,8 +221,7 @@ function symbol (unquoted)."
                   key-bindings)))))
 
 (defmacro bind-keys* (&rest args)
-  `(bind-keys :map override-global-map
-              ,@args))
+  `(bind-keys :map override-global-map ,@args))
 
 (defun get-binding-description (elem)
   (cond
@@ -292,7 +291,7 @@ function symbol (unquoted)."
                      (sort personal-keybindings
                            (lambda (l r)
                              (car (compare-keybindings l r))))))
-        
+
         (if (not (eq (cdar last-binding) (cdar binding)))
             (princ (format "\n\n%s\n%s\n\n"
                            (cdar binding)
@@ -300,7 +299,7 @@ function symbol (unquoted)."
           (if (and last-binding
                    (cdr (compare-keybindings last-binding binding)))
               (princ "\n")))
-        
+
         (let* ((key-name (caar binding))
                (at-present (lookup-key (or (symbol-value (cdar binding))
                                            (current-global-map))
@@ -325,7 +324,7 @@ function symbol (unquoted)."
             (princ (if (string-match "[ \t]+\n" line)
                        (replace-match "\n" t t line)
                      line))))
-        
+
         (setq last-binding binding)))))
 
 (provide 'bind-key)