branch: externals/transient
commit 6149bb8b7b65de67712525bc78ee60644bcfc4b7
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/transient.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/transient.el b/lisp/transient.el
index 17d41c7819..236137f0a1 100644
--- a/lisp/transient.el
+++ b/lisp/transient.el
@@ -3904,7 +3904,7 @@ Call `transient-default-value' but because that is a noop
for
(match-string 1 v)))))
(if multi-value
(delq nil (mapcar match value))
- (cl-some match value)))))))
+ (seq-some match value)))))))
(cl-defmethod transient-init-value ((obj transient-switch))
"Extract OBJ's value from the value of the prefix object."