aboutsummaryrefslogtreecommitdiff
path: root/lisp/magit-bundle.el
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2023-03-14 18:03:54 +0100
committerJonas Bernoulli <jonas@bernoul.li>2023-03-14 18:07:00 +0100
commita162b8a71ed7e4a168651c36cedbc598cdf405b3 (patch)
treeed0ac3b646e3372db5ddc5927114acb66c75ac57 /lisp/magit-bundle.el
parent95781f0c052d254e9217918908295f02c92fb379 (diff)
Complete switch to new magit-completing-read-multiple
In [1: c10e10c9a4] we added `magit-completing-read-multiple*' as a replacement for `magit-completing-read-multiple'. The goal was to eventually remove the latter and reuse its name for the former. Do that now. Well, one kludge remains: for now the function, whose name ends with "*", is preserved as an alias for the function, whose name does not. 1: 2021-06-29 c10e10c9a427c192dec841e524a6d3d47d2b21ee Update our completing-read-multiple replacement/wrapper
Diffstat (limited to 'lisp/magit-bundle.el')
-rw-r--r--lisp/magit-bundle.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/magit-bundle.el b/lisp/magit-bundle.el
index 75033da..a192d23 100644
--- a/lisp/magit-bundle.el
+++ b/lisp/magit-bundle.el
@@ -59,8 +59,8 @@
(concat (file-name-nondirectory
(directory-file-name (magit-toplevel)))
".bundle"))
- (magit-completing-read-multiple* "Refnames (zero or more): "
- (magit-list-refnames))
+ (magit-completing-read-multiple "Refnames (zero or more): "
+ (magit-list-refnames))
(transient-args 'magit-bundle-create))))
(if file
(magit-git-bundle "create" file refs args)
@@ -72,7 +72,7 @@
(interactive
(let ((tag (magit-read-tag "Track bundle using tag"))
(branch (magit-read-branch "Bundle branch"))
- (refs (magit-completing-read-multiple*
+ (refs (magit-completing-read-multiple
"Additional refnames (zero or more): "
(magit-list-refnames))))
(list (read-file-name "File: " nil nil nil (concat tag ".bundle"))