diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2020-08-28 19:39:00 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2020-09-08 12:21:22 +0200 |
| commit | 98421882e920955a8ad59bea6dacc4c043340714 (patch) | |
| tree | c61c8a7ad56eca533f87320b786abc3569eee744 /lisp/magit-clone.el | |
| parent | 4a8aed9458b5d795363571d2f8deef08e70b4e4e (diff) | |
Use seq-some instead of -some
The former is available since Emacs 25.1.
Diffstat (limited to 'lisp/magit-clone.el')
| -rw-r--r-- | lisp/magit-clone.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/magit-clone.el b/lisp/magit-clone.el index c08a6de..3dd4b48 100644 --- a/lisp/magit-clone.el +++ b/lisp/magit-clone.el @@ -260,7 +260,7 @@ Then show the status buffer for the new repository." (match-string 1 url))) (defun magit-clone--name-to-url (name) - (or (-some + (or (seq-some (pcase-lambda (`(,re ,host ,user)) (and (string-match re name) (let ((repo (match-string 1 name))) |
