diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-01 21:04:24 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-01 21:04:24 -0700 |
commit | 9823df8c051f71351a8de33d661b70afad7c2fee (patch) | |
tree | 3447c7c343ffa5aee7d6a58744fed355998127e2 /RELNOTES | |
parent | 2e09b52431cc988fbb0c6b898f262347252a126d (diff) | |
download | txr-9823df8c051f71351a8de33d661b70afad7c2fee.tar.gz txr-9823df8c051f71351a8de33d661b70afad7c2fee.tar.bz2 txr-9823df8c051f71351a8de33d661b70afad7c2fee.zip |
Version 261txr-261
* RELNOTES: Updated.
* configure, txr.1: Bumped version and date.
* share/txr/stdlib/ver.tl: Bumped.
* txr.vim, tl.vim: Regenerated.
* protsym.c: Likewise.
Diffstat (limited to 'RELNOTES')
-rw-r--r-- | RELNOTES | 34 |
1 files changed, 34 insertions, 0 deletions
@@ -1,3 +1,37 @@ + TXR 261 + 2021-06-01 + + + Features + + - JSON support: + #J syntax in TXR Lisp + - allows quasi-quoting and circular notation. + - I/O with JSON objects, with convenience routines like + file-put-json, and others. + - Vim syntax highlighting support for everything. + - parser: + - new parse-errors function for retrieving number or + parse errors from stream or nil if no errors. + - filesystem: + - new functions tmpfile, mkdtemp and mkstemp. + - lib: + - chr-iscntrl now recognizes Unicode C1 control character block, + not only the C0 from ASCII. + + Bugs + + - compiler: + - invalid move into register T0 generated when compiling catch code, + causing assembler to throw error. + - search trees: + - GC abort caused by tree-delete/tree-delete-node. + - parser: + - GC bug due to storing lookahead token in parser using + a wrong-way assignment. + + + TXR 260 2021-05-26 |