From: Jorge P. de Morais Neto Date: Thu, 22 Apr 2021 23:16:33 +0000 (-0300) Subject: * doc/misc/cl.texi (Iteration Clauses): fix `never' clause typo X-Git-Tag: emacs-28.0.90~2730^2~3 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8efb8491b2;p=emacs.git * doc/misc/cl.texi (Iteration Clauses): fix `never' clause typo This fixes bug#47962. Copyright-paperwork-exempt: yes --- diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi index bcec3e4221a..ea009a4e8e6 100644 --- a/doc/misc/cl.texi +++ b/doc/misc/cl.texi @@ -2246,7 +2246,7 @@ were non-@code{nil}, the loop returns @code{t}: @item never @var{condition} This clause is like @code{always}, except that the loop returns -@code{t} if any conditions were false, or @code{nil} otherwise. +@code{t} if all conditions were false, or @code{nil} otherwise. @item thereis @var{condition} This clause stops the loop when the specified form is non-@code{nil};