branch: elpa/magit
commit 621b67fc7e0663f262d17c8e975e7ebbe8fefbbe
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
magit-list-special-refnames: Cosmetics
---
lisp/magit-git.el | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/lisp/magit-git.el b/lisp/magit-git.el
index 810bc8d5758..88402ab94b6 100644
--- a/lisp/magit-git.el
+++ b/lisp/magit-git.el
@@ -2011,10 +2011,8 @@ SORTBY is a key or list of keys to pass to the `--sort'
flag of
(defun magit-list-special-refnames ()
(let ((gitdir (magit-gitdir)))
- (cl-mapcan (lambda (name)
- (and (file-exists-p (expand-file-name name gitdir))
- (list name)))
- magit-special-refnames)))
+ (seq-keep (lambda (name) (file-exists-p (expand-file-name name gitdir)))
+ magit-special-refnames)))
(defun magit-list-branch-names ()
(magit-list-refnames (list "refs/heads" "refs/remotes")))