diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-05 14:27:00 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-05 14:27:00 (GMT) |
commit | f0da6bf639f39212afbb6bdeb2fc2ce3d1844258 (patch) | |
tree | 0a5a032677c7e8b75091dc53037c2769a8b6e07c | |
parent | ea8a1a670c8eb5a24f36e6c282ba34f32eeea5f1 (diff) |
Changes to for()
-rw-r--r-- | doc/visitor-changes.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/visitor-changes.txt b/doc/visitor-changes.txt index 4e864bf..e9df8eb 100644 --- a/doc/visitor-changes.txt +++ b/doc/visitor-changes.txt @@ -1,4 +1,7 @@ Changes in visitor branch: o import_dxf(): layername="" imports all layers. Importing a single layer with a zero-length name is no longer supported. FIXME: The same prob. goes for dims o cylinder(): the r parameter will now always be used in place of a missing r1 or r2 -o for() with scalar argument now works, e.g.: for (i=23) echo(i) +o for(): + - with scalar argument now works, e.g.: for (i=23) echo(i) + - empty for loop is not evaluated, e.g. for () echo(i) + - for loop with illegal value is not evaluated, e.g. for ([0:true:2]) |