summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2020-11-01 13:55:29 +0100
committerLars Ingebrigtsen <larsi@gnus.org>2020-11-01 13:55:29 +0100
commit7a3d8559c9abac17c4ef2b951554912a87a9995d (patch)
treee0b74b62a556cc46493b436480983a22c593543c
parent76d522e59ef03397e15d30bb3b4de3840c917e63 (diff)
downloademacs-7a3d8559c9abac17c4ef2b951554912a87a9995d.tar.gz
Doc string clarification for cl-some
* lisp/emacs-lisp/cl-extra.el (cl-some): Clarify the return value (bug#44330).
-rw-r--r--lisp/emacs-lisp/cl-extra.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-extra.el b/lisp/emacs-lisp/cl-extra.el
index 23c784f9f8e..d3159a37683 100644
--- a/lisp/emacs-lisp/cl-extra.el
+++ b/lisp/emacs-lisp/cl-extra.el
@@ -201,8 +201,11 @@ the elements themselves.
;;;###autoload
(defun cl-some (cl-pred cl-seq &rest cl-rest)
- "Return true if PREDICATE is true of any element of SEQ or SEQs.
-If so, return the true (non-nil) value returned by PREDICATE.
+ "Say whether PREDICATE is true for any element in the SEQ sequences.
+More specifically, the return value of this function will be the
+same as the first return value of PREDICATE where PREDICATE has a
+non-nil value.
+
\n(fn PREDICATE SEQ...)"
(if (or cl-rest (nlistp cl-seq))
(catch 'cl-some