emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/git-commit 35da95e999 3/3: magit-push-*--desc: Remove newl


From: ELPA Syncer
Subject: [nongnu] elpa/git-commit 35da95e999 3/3: magit-push-*--desc: Remove newline at end of description
Date: Sat, 25 Jun 2022 08:58:22 -0400 (EDT)

branch: elpa/git-commit
commit 35da95e99943740c7778fb588cd275f0be1536fa
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    magit-push-*--desc: Remove newline at end of description
    
    This seems to be a leftover from when we still used `magit-popup'.
---
 lisp/magit-push.el | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/lisp/magit-push.el b/lisp/magit-push.el
index 03f44d7ffb..bdf30946b1 100644
--- a/lisp/magit-push.el
+++ b/lisp/magit-push.el
@@ -293,7 +293,7 @@ what this command will do.  To add it use something like:
 (defun magit-push-implicitly--desc ()
   (let ((default (magit-get "push.default")))
     (or (and (equal default "nothing")
-             (format "nothing (%s is %s)\n"
+             (format "nothing (%s is %s)"
                      (magit--propertize-face "push.default" 'bold)
                      (magit--propertize-face default        'bold)))
         (and-let* ((remote (or (magit-get-remote)
@@ -304,18 +304,18 @@ what this command will do.  To add it use something like:
                   (magit--propertize-face refspec 'bold)))
         (and-let* ((upstream (and (not (magit-get-push-branch))
                                   (magit-get-upstream-branch))))
-          (format "%s aka %s\n"
+          (format "%s aka %s"
                   (magit-branch-set-face upstream)
                   (magit--propertize-face "@{upstream}" 'bold)))
         (and-let* ((push-branch (magit-get-push-branch)))
-          (format "%s aka %s\n"
+          (format "%s aka %s"
                   (magit-branch-set-face push-branch)
                   (magit--propertize-face "pushRemote" 'bold)))
         (and-let* ((push-branch (magit-get-@{push}-branch)))
-          (format "%s aka %s\n"
+          (format "%s aka %s"
                   (magit-branch-set-face push-branch)
                   (magit--propertize-face "@{push}" 'bold)))
-        (format "using %s (%s is %s)\n"
+        (format "using %s (%s is %s)"
                 (magit--propertize-face "git push"     'bold)
                 (magit--propertize-face "push.default" 'bold)
                 (magit--propertize-face default        'bold)))))
@@ -343,7 +343,7 @@ You can add this command as a suffix using something like:
   (magit-run-git-async "push" "-v" args remote))
 
 (defun magit-push-to-remote--desc ()
-  (format "using %s\n" (magit--propertize-face "git push <remote>" 'bold)))
+  (format "using %s" (magit--propertize-face "git push <remote>" 'bold)))
 
 ;;; _
 (provide 'magit-push)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]