diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-02-28 06:28:00 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-02-28 06:28:00 -0800 |
commit | eea5eb4e29839b89b368b39165b8d2c87ebf406f (patch) | |
tree | 37a7f099b0dd147a51ef957b92249bee7c783ce4 /RELNOTES | |
parent | 44393aa4177a8412fdcb064d804fb0a8c6134c6d (diff) | |
download | txr-170.tar.gz txr-170.tar.bz2 txr-170.zip |
Version 170.txr-170
* RELNOTES: Updated.
* configure, txr.1: Bumped version and date.
* share/txr/stdlib/ver.tl: Likewise.
* txr.vim, tl.vim: Regenerated.
Diffstat (limited to 'RELNOTES')
-rw-r--r-- | RELNOTES | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -1,3 +1,28 @@ + TXR 170 + 2017-02-28 + + + Features + + - Horizontal-mode @(throw) directive. + - Horizontal @(block)...@(end) syntax. + - Second argument of trunc function is now optional: + (trunc -1.5) yields -1.0. + - floor and ceil functions take optional second argument, + which acts as a divisor: (floor 10 3) -> 3; (ceil 10 3) -> 4. + - New round function: (round 0.7) -> 1; (round 3 4) -> 1; (round 1 3) -> 0. + - New functions floor-rem, ceil-rem and round-rem. + + Bugs + + - Requirements for special interaction between @(accept) + and @(next), function calls, and @(finally) have been + identified and implemented. + - Fixed segfault (C null pointer dereference) when nil + symbol used to look up a struct slot. + + + TXR 169 2017-02-11 |