aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTino Calancha2016-06-07 13:46:33 -0400
committerGlenn Morris2016-06-07 13:46:33 -0400
commit601b9b2acdd417b43756c4e975a99fca5bb34231 (patch)
treec2a72bf47f185a57e08640bf7e9e2d428e70073f
parent6e3adf8a4a796cea4328a528da48fc972b3feed6 (diff)
downloademacs-601b9b2acdd417b43756c4e975a99fca5bb34231.tar.gz
emacs-601b9b2acdd417b43756c4e975a99fca5bb34231.zip
* doc/misc/cl.texi (Mapping over Sequences): Fix cl-notevery.
-rw-r--r--doc/misc/cl.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi
index 4137a95b3b2..a98d0ac455b 100644
--- a/doc/misc/cl.texi
+++ b/doc/misc/cl.texi
@@ -3364,7 +3364,7 @@ was @code{nil} for all elements.
3364@defun cl-notevery predicate seq &rest more-seqs 3364@defun cl-notevery predicate seq &rest more-seqs
3365This function calls @var{predicate} on each element of the sequence(s) 3365This function calls @var{predicate} on each element of the sequence(s)
3366in turn; it returns a non-@code{nil} value as soon as @var{predicate} 3366in turn; it returns a non-@code{nil} value as soon as @var{predicate}
3367returns @code{nil} for any element, or @code{t} if the predicate was 3367returns @code{nil} for any element, or @code{nil} if the predicate was
3368true for all elements. 3368true for all elements.
3369@end defun 3369@end defun
3370 3370