emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lispref/variables.texi


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lispref/variables.texi
Date: Tue, 05 Aug 2003 21:43:18 -0400

Index: emacs/lispref/variables.texi
diff -c emacs/lispref/variables.texi:1.41 emacs/lispref/variables.texi:1.42
*** emacs/lispref/variables.texi:1.41   Mon Jul 14 11:56:49 2003
--- emacs/lispref/variables.texi        Tue Aug  5 21:43:18 2003
***************
*** 198,215 ****
  
  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.
  
  @example
  @group
! (setq Y 2)
       @result{} 2
  @end group
  @group
! (let ((Y 1)
!       (Z Y))
!   (list Y Z))
       @result{} (1 2)
  @end group
  @end example
--- 198,215 ----
  
  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.
  
  @example
  @group
! (setq y 2)
       @result{} 2
  @end group
  @group
! (let ((y 1)
!       (z y))
!   (list y z))
       @result{} (1 2)
  @end group
  @end example
***************
*** 225,237 ****
  
  @example
  @group
! (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))
       @result{} (1 1)
  @end group
  @end example
--- 225,237 ----
  
  @example
  @group
! (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))
       @result{} (1 1)
  @end group
  @end example




reply via email to

[Prev in Thread] Current Thread [Next in Thread]