diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-03-10 18:54:57 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-03-10 18:54:57 -0800 |
commit | 05df1eea56e609ff574f76e87d07c8d8fa9d3321 (patch) | |
tree | 26a8e5c5b431bfd6deb6a7154717d5b138acc3c1 /RELNOTES | |
parent | 7d697488aa89ee7799c6440eb36d176081169b7e (diff) | |
download | txr-05df1eea56e609ff574f76e87d07c8d8fa9d3321.tar.gz txr-05df1eea56e609ff574f76e87d07c8d8fa9d3321.tar.bz2 txr-05df1eea56e609ff574f76e87d07c8d8fa9d3321.zip |
Version 254txr-254
* RELNOTES: Updated.
* configure, txr.1: Bumped version and date.
* share/txr/stdlib/ver.tl: Bumped.
* txr.vim, tl.vim: Regenerated.
Diffstat (limited to 'RELNOTES')
-rw-r--r-- | RELNOTES | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -1,3 +1,30 @@ + TXR 254 + 2021-03-10 + + + Features: + + - compiler: + - elimination of function calls that produce unused values. + - this compiles down to just "nil": + (let ((x (cons y z))) (set x (cons u v)) (set x nil) x))) + - elimination of unused accesses to globals + - elimination of unused lambdas. + - optimization control: new variable *opt-level*, valued 0-6. + + - lib: + - new functions join and join-with to complement the tired old + cat-str for joining strings and characters. + - (join-with ":" "a" "b" "c") -> "a:b:c" + - (join "a" "b" "c") -> "abc" + + Bugs: + + - broken sort function over vectors and strings + - failing to return the sorted object + + + TXR 253 2021-03-06 |