branch: elpa/magit
commit 128258ca93b7dfc7f6ddc9763f01e99c5d0d841f
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>

    magit-insert-push-branch-header: Fix indentation
---
 lisp/magit-status.el | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/lisp/magit-status.el b/lisp/magit-status.el
index 5aa0b7d5de1..0ac1169a6cf 100644
--- a/lisp/magit-status.el
+++ b/lisp/magit-status.el
@@ -657,23 +657,23 @@ arguments are for internal use only."
       (insert (format "%-10s" "Push: "))
       (insert
        (cond-let
-        ((magit-rev-verify target)
-         (concat (and magit-status-show-hashes-in-headers
-                      (concat (propertize (magit-rev-format "%h" target)
-                                          'font-lock-face 'magit-hash)
-                              " "))
-                 target " "
-                 (magit-log--wash-summary
-                  (or (magit-rev-format "%s" target)
-                      "(no commit message)"))))
-        [[remote (magit-get-push-remote branch)]]
-        ((magit-remote-p remote)
-         (concat target " "
-                 (propertize "does not exist"
-                             'font-lock-face 'magit-branch-warning)))
-        ((concat remote " "
-                 (propertize "remote does not exist"
-                             'font-lock-face 'magit-branch-warning)))))
+         ((magit-rev-verify target)
+          (concat (and magit-status-show-hashes-in-headers
+                       (concat (propertize (magit-rev-format "%h" target)
+                                           'font-lock-face 'magit-hash)
+                               " "))
+                  target " "
+                  (magit-log--wash-summary
+                   (or (magit-rev-format "%s" target)
+                       "(no commit message)"))))
+         [[remote (magit-get-push-remote branch)]]
+         ((magit-remote-p remote)
+          (concat target " "
+                  (propertize "does not exist"
+                              'font-lock-face 'magit-branch-warning)))
+         ((concat remote " "
+                  (propertize "remote does not exist"
+                              'font-lock-face 'magit-branch-warning)))))
       (insert ?\n))))
 
 (defun magit-insert-tags-header ()

Reply via email to