diff options
author | Richard M. Stallman <rms@gnu.org> | 2003-08-06 01:43:18 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2003-08-06 01:43:18 +0000 |
commit | 5c646a2dc530e7459790352aa1a323fb17187c73 (patch) | |
tree | 299c18ed86b975ee2ad340560f3058a4fab1cb53 /lispref/variables.texi | |
parent | e4317c8ca95a30a05de61ee5e1752bfde7356ef8 (diff) | |
download | emacs-5c646a2dc530e7459790352aa1a323fb17187c73.tar.gz |
(Local Variables): Use lc for example variable names.
Diffstat (limited to 'lispref/variables.texi')
-rw-r--r-- | lispref/variables.texi | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lispref/variables.texi b/lispref/variables.texi index bbed104a42b..2d03b4e37c5 100644 --- a/lispref/variables.texi +++ b/lispref/variables.texi @@ -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 |