diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-02-11 16:28:23 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-02-11 16:28:23 -0800 |
commit | 8910536efaa12182a4ae0158783a1bb1426cdf04 (patch) | |
tree | 7c9d97c7efc3bd1f855f8a31ddee09d0970cecf4 | |
parent | 28c0b2296f8e7e268400911d8fa6bb07a5bc76b3 (diff) | |
download | txr-8910536efaa12182a4ae0158783a1bb1426cdf04.tar.gz txr-8910536efaa12182a4ae0158783a1bb1426cdf04.tar.bz2 txr-8910536efaa12182a4ae0158783a1bb1426cdf04.zip |
Version 79txr-79
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | RELNOTES | 20 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | txr.1 | 4 | ||||
-rw-r--r-- | txr.c | 2 |
5 files changed, 36 insertions, 4 deletions
@@ -1,5 +1,17 @@ 2014-02-11 Kaz Kylheku <kaz@kylheku.com> + Version 79 + + * txr.c (version): Bumped. + + * txr.1: Bumped version and set date. + + * configure (txr_ver): Bumped. + + * RELNOTES: Updated. + +2014-02-11 Kaz Kylheku <kaz@kylheku.com> + * eval.c (if_fun): Bugfix: forgotten handling of optional alternative argument. @@ -1,3 +1,23 @@ + TXR 79 + 2014-02-11 + + + Features + + - New functions comb, perm, rcomp and rperm for calculating repeating and + non-repeating combinations and permuations of sequences (lists, vectors and + strings). Hashes are supported by comb function. + + Bugs + + - Hardening of code for handling excessively large vectors. + + - Bugfix in quasistring handling in TXR Lisp. + + - Bugfix in if function (not the if operator). + + + TXR 78 2014-02-06 @@ -387,7 +387,7 @@ fi # -txr_ver=78 +txr_ver=79 # # 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 2014-02-06 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku" +.TH "TXR" 1 2014-02-11 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku" .SH NAME -txr \- text processing language (version 78) +txr \- text processing language (version 79) .SH SYNOPSIS .B txr [ options ] query-file { data-file }* .sp @@ -47,7 +47,7 @@ #include "eval.h" #include "txr.h" -const wchli_t *version = wli("78"); +const wchli_t *version = wli("79"); const wchar_t *progname = L"txr"; val self_path; |