New directory
[bpt/emacs.git] / lispref / variables.texi
index 3848e46..bbed104 100644 (file)
@@ -198,18 +198,18 @@ is omitted, @code{nil} is used.
 
 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 @@ form.  Compare the following example with the example above for
 
 @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
@@ -1769,7 +1769,3 @@ lists in files being visited.  A value of @code{t} means process them
 unconditionally; @code{nil} means ignore them; anything else means ask
 the user what to do for each file.  The default value is @code{maybe}.
 @end defopt
-
-@ignore
-   arch-tag: 5ff62c44-2b51-47bb-99d4-fea5aeec5d3e
-@end ignore