diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-07-01 07:48:21 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-07-01 07:48:21 -0700 |
commit | 3ad2bb550a57a03e4c6311484dc532fed8beb880 (patch) | |
tree | fcc5228835385ef1014c70558b87338355197833 /RELNOTES | |
parent | 49084ad6fc1246fb5a27c79a391ccf68a72be1ca (diff) | |
download | txr-3ad2bb550a57a03e4c6311484dc532fed8beb880.tar.gz txr-3ad2bb550a57a03e4c6311484dc532fed8beb880.tar.bz2 txr-3ad2bb550a57a03e4c6311484dc532fed8beb880.zip |
Version 278.
* RELNOTES: Updated.
* configure (txr_ver): Bumped version.
* stdlib/ver.tl (lib-version): Bumped.
* txr.1: Bumped version and date.
* protsym.c: Regenerated.
Diffstat (limited to 'RELNOTES')
-rw-r--r-- | RELNOTES | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -1,3 +1,36 @@ + TXR 278 + 2022-06-01 + + + Features + + - New str function for making a string filled with + repeating pattern. + - Syntax: stricter check in for/for* loop syntax. + - I/O: + - open-fileno (TXR's "fdopen") now takes pid argument, to associate + the resulting stream with a process. + - close-stream will subsequently wait on that process, and convert + the status to a return value or exception. + - all I/O convenience functions like command-get-linews + now have a mode-opt argument. + - For instance "z" can be used for compressed I/O. + + Bugs + + - Build: broken when no HAVE_ZLIB. + - Command line: broken --free-all option. + - String output streams: GC issue, occuring in some builds. + - Listener: properly handle warnings coming out of code that is + autoloaded during Tab completion. + - Issue seen when working on TXR, with library .tlo files removed, + so .tl files are used. + - Compiler: failure in optimizer. + - Compression: missing "z" support in open-command. + - Missing: mode-opt argument of file-get-lines now implemented. + + + TXR LZ77 :-) 2022-05-31 |