]> git.eshelyaron.com Git - emacs.git/commitdiff
* doc/misc/cl.texi (Iteration Clauses): Clarify example (Bug#19515).
authorJohan Claesson <johanclaesson@bredband.net>
Mon, 5 Jan 2015 12:35:35 +0000 (13:35 +0100)
committerNoam Postavsky <npostavs@gmail.com>
Sun, 26 Mar 2017 13:14:15 +0000 (09:14 -0400)
Copyright-paperwork-exempt: yes

doc/misc/cl.texi

index c30381a475c2efd990def053dbf0f21298bbc96c..b672678dc8caf22640eaf3eafd1f27b5a8103409 100644 (file)
@@ -2242,8 +2242,8 @@ were non-@code{nil}, the loop returns @code{t}:
 
 @example
 (if (cl-loop for size in size-list always (> size 10))
-    (some-big-sizes)
-  (no-big-sizes))
+    (only-big-sizes)
+  (some-small-sizes))
 @end example
 
 @item never @var{condition}