diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-02-13 16:18:36 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-02-13 16:18:36 -0800 |
commit | 35dbebb52a72343b9834092de3f6d1d9614d1f74 (patch) | |
tree | cedc5742cea6361e2c07302a044db428d4da0f67 /RELNOTES | |
parent | f31be2486084f6388ea212f18574584ab4c13e64 (diff) | |
download | txr-35dbebb52a72343b9834092de3f6d1d9614d1f74.tar.gz txr-35dbebb52a72343b9834092de3f6d1d9614d1f74.tar.bz2 txr-35dbebb52a72343b9834092de3f6d1d9614d1f74.zip |
Version 57txr-57
* txr.c (version): Bumped.
* txr.1: Bumped version and set date.
* configure (txr_ver): Bumped.
* RELNOTES: Updated.
Diffstat (limited to 'RELNOTES')
-rw-r--r-- | RELNOTES | 36 |
1 files changed, 36 insertions, 0 deletions
@@ -1,3 +1,39 @@ + TXR 57 + 2011-02-14 + + + Features + + - Operations under the @(freeform) directive can now scan in constant memory, + allowing large files to be processed. (Scanning a single regex still + requires the data to be all in memory: an experimental patch for this + exists.) + + - Improved printing of character position context in debugger when lines are + long. + + - Metanums (@1, etc) can be used in a quasiliteral, which is useful for + quasiliterals occuring inside the op notation. + + Bugs + + - lazy-flatten function did not handle atoms. This broke @(next :list expr) + also, for the case where expr evaluates to a string atom. + + - In format, the ~s directive was found to be printing strings in the same + way as ~a. + + - Hex and octal character constants did not work. + + - Control characters in strings and characters are printed as hex now rather + than octal. A semicolon is added if the next character would be interpreted + as part of the escape. + + - Hash indexing via the [] notation was still requiring the default value + argument. + + + TXR 56 2011-02-06 |