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

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

[nongnu] elpa/git-commit a5ca96edcd 02/15: Use cl-union instead of -unio


From: ELPA Syncer
Subject: [nongnu] elpa/git-commit a5ca96edcd 02/15: Use cl-union instead of -union
Date: Mon, 31 Jul 2023 10:00:15 -0400 (EDT)

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

    Use cl-union instead of -union
---
 lisp/magit-git.el  | 13 +++++++------
 lisp/magit-push.el |  7 ++++---
 2 files changed, 11 insertions(+), 9 deletions(-)

diff --git a/lisp/magit-git.el b/lisp/magit-git.el
index f1de0eb351..ab1d4f518e 100644
--- a/lisp/magit-git.el
+++ b/lisp/magit-git.el
@@ -2606,12 +2606,13 @@ and this option only controls what face is used.")
     (prompt &optional remote default local-branch require-match)
   (let ((choice (magit-completing-read
                  prompt
-                 (-union (and local-branch
-                              (if remote
-                                  (concat remote "/" local-branch)
-                                (--map (concat it "/" local-branch)
-                                       (magit-list-remotes))))
-                         (magit-list-remote-branch-names remote t))
+                 (cl-union (and local-branch
+                                (if remote
+                                    (concat remote "/" local-branch)
+                                  (--map (concat it "/" local-branch)
+                                         (magit-list-remotes))))
+                           (magit-list-remote-branch-names remote t)
+                           :test #'equal)
                  nil require-match nil 'magit-revision-history default)))
     (if (or remote (string-match "\\`\\([^/]+\\)/\\(.+\\)" choice))
         choice
diff --git a/lisp/magit-push.el b/lisp/magit-push.el
index dd3dd8ecb1..3e5538ae8f 100644
--- a/lisp/magit-push.el
+++ b/lisp/magit-push.el
@@ -130,9 +130,10 @@ the upstream."
               (not (or (magit-get-upstream-branch branch)
                        (magit--unnamed-upstream-p remote merge)
                        (magit--valid-upstream-p remote merge))))
-      (let* ((branches (-union (--map (concat it "/" branch)
-                                      (magit-list-remotes))
-                               (magit-list-remote-branch-names)))
+      (let* ((branches (cl-union (--map (concat it "/" branch)
+                                        (magit-list-remotes))
+                                 (magit-list-remote-branch-names)
+                                 :test #'equal))
              (upstream (magit-completing-read
                         (format "Set upstream of %s and push there" branch)
                         branches nil nil nil 'magit-revision-history



reply via email to

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