summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lispref/lists.texi3
1 files changed, 1 insertions, 2 deletions
diff --git a/lispref/lists.texi b/lispref/lists.texi
index 0eb4a290f43..3f9a5c8d7e4 100644
--- a/lispref/lists.texi
+++ b/lispref/lists.texi
@@ -1417,8 +1417,7 @@ the associations of one copy without affecting the other:
@smallexample
@group
-(setcdr (assq 3 needles-per-cluster)
- '("Martian Vacuum Pine"))
+(setcdr (assq 3 copy) '("Martian Vacuum Pine"))
(cdr (assq 3 needles-per-cluster))
@result{} ("Pitch Pine")
@end group