From: Tino Calancha Date: Tue, 7 Jun 2016 17:46:33 +0000 (-0400) Subject: * doc/misc/cl.texi (Mapping over Sequences): Fix cl-notevery. X-Git-Tag: emacs-25.0.95~12 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=601b9b2;p=emacs.git * doc/misc/cl.texi (Mapping over Sequences): Fix cl-notevery. --- 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. @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