1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

* doc/misc/cl.texi (Mapping over Sequences): Fix cl-notevery.

This commit is contained in:
Tino Calancha 2016-06-07 13:46:33 -04:00 committed by Glenn Morris
parent 6e3adf8a4a
commit 601b9b2acd

View File

@ -3364,7 +3364,7 @@ was @code{nil} for all elements.
@defun cl-notevery predicate seq &rest more-seqs
This function calls @var{predicate} on each element of the sequence(s)
in turn; it returns a non-@code{nil} value as soon as @var{predicate}
returns @code{nil} for any element, or @code{t} if the predicate was
returns @code{nil} for any element, or @code{nil} if the predicate was
true for all elements.
@end defun