# HG changeset patch # User Richard M. Stallman # Date 1060134198 0 # Node ID d35ce1568ac0aa15246d657b079e9eb2bcb4bab1 # Parent 9928a29a3e805548a543a3725ba7f87138235f2c (Local Variables): Use lc for example variable names. diff -r 9928a29a3e80 -r d35ce1568ac0 lispref/variables.texi --- a/lispref/variables.texi Wed Aug 06 01:42:44 2003 +0000 +++ b/lispref/variables.texi Wed Aug 06 01:43:18 2003 +0000 @@ -198,18 +198,18 @@ All of the @var{value-form}s in @var{bindings} are evaluated in the order they appear and @emph{before} binding any of the symbols to them. -Here is an example of this: @code{Z} is bound to the old value of -@code{Y}, which is 2, not the new value of @code{Y}, which is 1. +Here is an example of this: @code{z} is bound to the old value of +@code{y}, which is 2, not the new value of @code{y}, which is 1. @example @group -(setq Y 2) +(setq y 2) @result{} 2 @end group @group -(let ((Y 1) - (Z Y)) - (list Y Z)) +(let ((y 1) + (z y)) + (list y z)) @result{} (1 2) @end group @end example @@ -225,13 +225,13 @@ @example @group -(setq Y 2) +(setq y 2) @result{} 2 @end group @group -(let* ((Y 1) - (Z Y)) ; @r{Use the just-established value of @code{Y}.} - (list Y Z)) +(let* ((y 1) + (z y)) ; @r{Use the just-established value of @code{y}.} + (list y z)) @result{} (1 1) @end group @end example