diff options
| author | Tino Calancha | 2016-06-07 13:46:33 -0400 |
|---|---|---|
| committer | Glenn Morris | 2016-06-07 13:46:33 -0400 |
| commit | 601b9b2acdd417b43756c4e975a99fca5bb34231 (patch) | |
| tree | c2a72bf47f185a57e08640bf7e9e2d428e70073f | |
| parent | 6e3adf8a4a796cea4328a528da48fc972b3feed6 (diff) | |
| download | emacs-601b9b2acdd417b43756c4e975a99fca5bb34231.tar.gz emacs-601b9b2acdd417b43756c4e975a99fca5bb34231.zip | |
* doc/misc/cl.texi (Mapping over Sequences): Fix cl-notevery.
| -rw-r--r-- | doc/misc/cl.texi | 2 |
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 |
| 3365 | This function calls @var{predicate} on each element of the sequence(s) | 3365 | This function calls @var{predicate} on each element of the sequence(s) |
| 3366 | in turn; it returns a non-@code{nil} value as soon as @var{predicate} | 3366 | in turn; it returns a non-@code{nil} value as soon as @var{predicate} |
| 3367 | returns @code{nil} for any element, or @code{t} if the predicate was | 3367 | returns @code{nil} for any element, or @code{nil} if the predicate was |
| 3368 | true for all elements. | 3368 | true for all elements. |
| 3369 | @end defun | 3369 | @end defun |
| 3370 | 3370 | ||