diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-11-29 18:15:23 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-11-29 18:15:23 -0800 |
commit | 72955500f8b3a5bc52585d3f24aa3d71bdca3b19 (patch) | |
tree | 6736b5373c9b702fc04f746df56b0b05cad5d868 /RELNOTES | |
parent | 1b62db4e46865949779560e25fe835eeea3dc48b (diff) | |
download | txr-72955500f8b3a5bc52585d3f24aa3d71bdca3b19.tar.gz txr-72955500f8b3a5bc52585d3f24aa3d71bdca3b19.tar.bz2 txr-72955500f8b3a5bc52585d3f24aa3d71bdca3b19.zip |
Version 126.txr-126
* 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 | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -1,3 +1,34 @@ + TXR 126 + 2015-11-29 + + + Features + + - New functions window-map and window-mappend for filtering sequences + with a sliding window context surrounding the current element. + - New macro define-accessor for easily extending functions + to be accessors (supporting assignment). + - Diagnostics for unhandled exceptions, and those caught in the REPL, + now include a detail trace of the macro-expansion which created the + form in which they originate. + - Increased stack size on Windows (MinGW and Cygwin). + + Bugs + + - Regression in super function: when called with a struct instance, was + returning its type rather than supertype. + - Incorrect behavior (failure) in split and partition functions when index + argument is a function, and returns nil. + - Fixed regression in transpose function, causing it to be destructive. + - Fixed sethash: it was returning a boolean rather than the stored value, + as documented. + - Improved clarity of error messages which identify destructuring mismatches + in macro calls and macro-like binding constructs. + - Fixed poorly informative diagnostic when defmeth is used on a nonexistent + struct type. + + + TXR 125 2015-11-20 |