diff options
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | RELNOTES | 23 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | txr.1 | 4 | ||||
-rw-r--r-- | txr.c | 2 |
5 files changed, 39 insertions, 4 deletions
@@ -1,5 +1,17 @@ 2011-12-06 Kaz Kylheku <kaz@kylheku.com> + Version 046 + + * txr.c (version): Bumped. + + * txr.1: Bumped version and set date. + + * configure (txr_ver): Bumped. + + * RELNOTES: Updated. + +2011-12-06 Kaz Kylheku <kaz@kylheku.com> + * stream.c (find_char): New function. (string_in_get_line): Following up TODO. Fixed broken function. Now get_line on a string stream properly returns characters @@ -1,3 +1,26 @@ + TXR 046 + 2012-12-06 + + + Features + + - Vector-related functions exposed in Lisp interpreter. + + - Syntax added for specifying vector literals in code. + + - Length function made generic over strings, lists and vectors. + + Bugs + + - Broken get_line function over string input streams fixed. + + - Some kinds of character literals were not being recognized properly. + + - bugfixes in configure script, affecting 64 bit Mac OS X. Thanks + to Andy Wildenberg for reporting issue and confirming root cause. + + + TXR 045 2012-12-05 @@ -349,7 +349,7 @@ fi # -txr_ver=045 +txr_ver=046 # # The all important banner. @@ -21,9 +21,9 @@ .\"IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED .\"WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -.TH "txr" 1 2011-12-05 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku" +.TH "txr" 1 2011-12-06 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku" .SH NAME -txr \- text extractor (version 045) +txr \- text extractor (version 046) .SH SYNOPSIS .B txr [ options ] query-file { data-file }* .sp @@ -43,7 +43,7 @@ #include "debug.h" #include "txr.h" -const wchli_t *version = wli("045"); +const wchli_t *version = wli("046"); const wchar_t *progname = L"txr"; const wchar_t *spec_file = L"stdin"; val spec_file_str; |