summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnu.org>2018-05-21 09:34:53 +0200
committerThien-Thi Nguyen <ttn@gnu.org>2018-05-21 09:34:53 +0200
commit28e35f28bf9ee4e215e82b5db0ce547e63b69443 (patch)
tree78735e7e9dad5331ffc050445fb832956e1506f2
parent68944b2a374934ea437f2402eab49dbe9df2a362 (diff)
downloademacs-28e35f28bf9ee4e215e82b5db0ce547e63b69443.tar.gz
touch up same-symbol caveat example explanation: include "lines 3-4"
-rw-r--r--doc/lispref/control.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi
index c416fd7c06f..b4ffe8913c6 100644
--- a/doc/lispref/control.texi
+++ b/doc/lispref/control.texi
@@ -834,8 +834,8 @@ Enter an integer: 149
Line 1 ``factors out'' the @var{expval} binding with
@code{and} and @var{symbol} (in this case, @code{num}).
The @code{or} begins in the same manner as before (line 2),
-but instead of binding different symbols, uses @code{let}
-to bind the same symbol @code{spin} in both sub-patterns.
+but instead of binding different symbols, uses @code{let} twice
+(lines 3-4) to bind the same symbol @code{spin} in both sub-patterns.
The value of @code{spin} distinguishes the sub-patterns.
The body form references both symbols (line 5).
@end enumerate