summaryrefslogtreecommitdiffstats
path: root/lisplib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-10-14 21:48:19 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-10-14 21:48:19 -0700
commit552b03e28ce914ec3959ae7585525ef45b92fc44 (patch)
tree5515b9d9002db2fe6e7017ba6d1571803b7823fd /lisplib.c
parent9cef0547ba0ec81ce6051bb1cba9db5671e08e64 (diff)
downloadtxr-552b03e28ce914ec3959ae7585525ef45b92fc44.tar.gz
txr-552b03e28ce914ec3959ae7585525ef45b92fc44.tar.bz2
txr-552b03e28ce914ec3959ae7585525ef45b92fc44.zip
Adding typecase macro.
* lisplib.c (type_set_entries, type_instantiate): New static functions. (lisplib_init): Register new functions in dl_table. * share/txr/stdlib/type.tl: New file, providing typecase * txr.1: Documented typecase.
Diffstat (limited to 'lisplib.c')
-rw-r--r--lisplib.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/lisplib.c b/lisplib.c
index cb4fdb48..09e0386f 100644
--- a/lisplib.c
+++ b/lisplib.c
@@ -242,6 +242,21 @@ static val except_instantiate(val set_fun)
return nil;
}
+static val type_set_entries(val dlt, val fun)
+{
+ val name[] = { lit("typecase"), nil };
+ set_dlt_entries(dlt, name, fun);
+ return nil;
+}
+
+static val type_instantiate(val set_fun)
+{
+ funcall1(set_fun, nil);
+ load(format(nil, lit("~a/type.tl"), stdlib_path, nao));
+ return nil;
+}
+
+
val dlt_register(val dlt,
val (*instantiate)(val),
@@ -264,6 +279,7 @@ void lisplib_init(void)
dlt_register(dl_table, with_stream_instantiate, with_stream_set_entries);
dlt_register(dl_table, hash_instantiate, hash_set_entries);
dlt_register(dl_table, except_instantiate, except_set_entries);
+ dlt_register(dl_table, type_instantiate, type_set_entries);
}
val lisplib_try_load(val sym)