From: Richard M. Stallman Date: Mon, 27 Mar 1995 22:16:51 +0000 (+0000) Subject: Fix setcdr example. X-Git-Tag: emacs-19.34~4721 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c74c521ddc5cbe93849f7d6be4c7476d69031072;p=emacs.git Fix setcdr example. --- 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