diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-01-15 18:36:42 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-01-15 18:36:42 -0800 |
commit | 05b1383fae022cea0548ed9c587c4a1289c6b1e6 (patch) | |
tree | b4c7e3ed3864d7a7049762953e5c20d5645aa759 /RELNOTES | |
parent | 4375946224455b2509d6ca27e48c2cd6d51a704e (diff) | |
download | txr-05b1383fae022cea0548ed9c587c4a1289c6b1e6.tar.gz txr-05b1383fae022cea0548ed9c587c4a1289c6b1e6.tar.bz2 txr-05b1383fae022cea0548ed9c587c4a1289c6b1e6.zip |
Version 205.txr-205
* 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 | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -1,3 +1,29 @@ + TXR 205 + 2019-01-15 + + + Features + + - New function square for squaring a number; faster for bignums. + - FFI: + - array handling is more forgiving: Lisp sequences shorter than the array + can be converted without error; the array is null padded. + + Bugs + + - build: + - fixed problem related to alloca.h, reproduced under the Musl C library. + - compiler/assembler: + - fixed several bugs that prevent the compilation of functions with + deeply nested lexical scopes or large numbers of local variables, + yet well within the VM limits. + - FFI: + - Fixed issue in (array n char) type's put operation: this FFI type + does not null-terminate, but was doing it when truncating strings + longer than n. + + + TXR 204 2018-12-18 |