diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-11-08 14:48:33 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-11-08 14:48:33 -0800 |
commit | 84af229255b1e5a594a54907adc317b61828a989 (patch) | |
tree | 3de55e9e06b1ccaa586947ceca866c6444403b85 /txr.1 | |
parent | 4d9a7fdc21730824f69d6e33e497dade864a170f (diff) | |
download | txr-84af229255b1e5a594a54907adc317b61828a989.tar.gz txr-84af229255b1e5a594a54907adc317b61828a989.tar.bz2 txr-84af229255b1e5a594a54907adc317b61828a989.zip |
Variable init forms of for go inside nil block.
* eval.c (op_for): Establish the block before doing any
evaluation, subject to the compatibility option.
* txr.1: Updated documentation for for, exchanging
steps 1 and 2. Added compatibility notes.
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 20 |
1 files changed, 14 insertions, 6 deletions
@@ -12502,6 +12502,11 @@ and operators execute these steps: .RS .IP 1. +Establish an anonymous block over the entire form, allowing +the +.code return +operator to be used to terminate the loop. +.IP 2. Establish bindings for the specified variables similarly to .code let and @@ -12514,11 +12519,6 @@ each .meta inc-form and each .metn body-form . -.IP 2. -Establish an anonymous block over the remaining forms, allowing -the -.code return -operator to be used to terminate the loop. .IP 3. Evaluate .metn test-form . @@ -37341,7 +37341,15 @@ of these version values, the described behaviors are provided if is given an argument which is equal or lower. For instance .code -C 103 selects the behaviors described below for version 105, but not those for 102. - +.IP 123 +In \*(TX 123 and earlier, the variable initialization forms of a +.code for +or +.code for* +loop were evaluated outside of the scope of the implicit +.code nil +block. They are now inside the block. The compatibility option will +restore the old behavior. .IP 121 In \*(TX 121 and earlier versions, \*(TL expressions evaluated in the pattern language were placed in a lexical environment in which the |