diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2013-07-12 22:01:17 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2013-07-12 22:01:17 -0700 |
commit | 7513cce876df146917eb747a31e1a3f44344f4bb (patch) | |
tree | c3572c232c2675d3fae519b01a975cfaad2af477 /eval.c | |
parent | 209e81e4a643db09e5c1645b5fb7568b12e7360b (diff) | |
download | txr-7513cce876df146917eb747a31e1a3f44344f4bb.tar.gz txr-7513cce876df146917eb747a31e1a3f44344f4bb.tar.bz2 txr-7513cce876df146917eb747a31e1a3f44344f4bb.zip |
Version 67
* txr.c (version): Bumped.
* txr.1: Bumped version, set date and documented string-cmp.
* configure (txr_ver): Bumped.
* eval.c (eval_init): Forgotten string-cmp registered as intrinsic.
* txr.vim: Highlighting for string-cmp.
* RELNOTES: Updated.
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2371,6 +2371,7 @@ void eval_init(void) reg_fun(intern(lit("tok-str"), user_package), func_n3o(tok_str, 1)); reg_fun(intern(lit("list-str"), user_package), func_n1(list_str)); reg_fun(intern(lit("trim-str"), user_package), func_n1(trim_str)); + reg_fun(intern(lit("string-cmp"), user_package), func_n2(string_cmp)); reg_fun(intern(lit("string-lt"), user_package), func_n2(string_lt)); reg_fun(intern(lit("int-str"), user_package), func_n2o(int_str, 1)); reg_fun(intern(lit("flo-str"), user_package), func_n1(flo_str)); |