branch: elpa/magit
commit 1355bb9df706c5f7eecfec3223c70fd741352ac6
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>

    Use seq-some instead of cl-some
    
    Do this for consistency across all my packages.
---
 lisp/magit.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/magit.el b/lisp/magit.el
index 7124ecec2c..6011a148d3 100644
--- a/lisp/magit.el
+++ b/lisp/magit.el
@@ -550,8 +550,8 @@ is run in the top-level directory of the current working 
tree."
   (magit-read-gpg-secret-key
    prompt initial-input history
    (lambda (cert)
-     (cl-some (##memq 'sign (epg-sub-key-capability %))
-              (epg-key-sub-key-list cert)))
+     (seq-some (##memq 'sign (epg-sub-key-capability %))
+               (epg-key-sub-key-list cert)))
    magit-openpgp-default-signing-key))
 
 ;;; Font-Lock Keywords

Reply via email to