diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-10-18 17:39:33 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-10-18 17:39:33 -0700 |
commit | 1a555b239d1949588e28e6fd5cbdb87c2d068226 (patch) | |
tree | 9b15b9197e75ffbc1936ab58dc622bbdebcd8214 /RELNOTES | |
parent | 09c298514a143adeebba281701c3c36ba6ad060f (diff) | |
download | txr-1a555b239d1949588e28e6fd5cbdb87c2d068226.tar.gz txr-1a555b239d1949588e28e6fd5cbdb87c2d068226.tar.bz2 txr-1a555b239d1949588e28e6fd5cbdb87c2d068226.zip |
Version 120.txr-120
* 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 | 48 |
1 files changed, 48 insertions, 0 deletions
@@ -1,3 +1,51 @@ + TXR 120 + 2015-10-18 + + + Features + + - Structs: + - Finalizers (specified by :fini) are now registered early in the + object initialization (at a given inheritance level). This allows + finalizers to clean up abandoned initializations. + - If initialization of a struct is abandoned, the finalizers are invoked + immediately, as part of unwinding. + - New defmeth macro for defining methods outside of a defstruct. + - New static-slot-ensure function for adding a new static slot to + a struct (and its inheritance descendants). + - static-slot and static-slot-set can take struct type name in place of + struct type. + - New functions hash-begin and hash-next, for iterating hash table, + and with-hash-iter macro. + - Listener: + - TXR now launches listener if no arguments are given. + - Exceptions: + - New way of handling exceptions without unwinding: handler-bind and + handle operators. + - Introspection over exception frames: get-frames and find-frame + functions can inquire about frames, and invoke-catch can transfer + control to a chosen catch frame. + - New ~b conversion specifier in format function for printing integers + in binary. + - The typecase macro has been added, similar to Common Lisp's. + - Some functions have been renamed for consistency, but remain available + under old names: list-vector -> list-vec, vector-list -> vec->list, + chr-num -> chr-int, num-chr -> int-chr. + - The sh function isn't implemented using the C library function + system any more. + + Bugs + + - Fixed use of nonexistent functions in error handling cases + of defstruct macro. + - Fixed bug in the overflow check in the chk_grow_vec function, + used by string-extend, the get-line function of many stream types, + and string output streams. + - Fixed unterminated format argument list issue affecting interactive + listener. (Reproduced on Mac OS/X). + + + TXR 119 2015-10-10 |