summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-07-27 22:33:01 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-07-27 22:33:01 -0700
commitac8a694beb385af6d2bdb464ba67b1a7c044cef7 (patch)
treeda5f87b3724b24364190ee887a648805415b9015 /lib.c
parent8384b0fbcbf329dd7f234546f50f2600a5c8b6b4 (diff)
downloadtxr-ac8a694beb385af6d2bdb464ba67b1a7c044cef7.tar.gz
txr-ac8a694beb385af6d2bdb464ba67b1a7c044cef7.tar.bz2
txr-ac8a694beb385af6d2bdb464ba67b1a7c044cef7.zip
subtypep: handle struct type objects.
The subtypep function has poor requirements, handling only type symbols. Let's extend it to handle structure type objects. * lib.c (subtypep): In all cases when an argument is considered to be a possible structure symbol, and thus subject to find_struct_type, consider whether it already is a struct type, and just take it as-is. * tests/012/type.tl: New tests. * txr.1: Updated.
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib.c b/lib.c
index 14ddbe68..1a12e678 100644
--- a/lib.c
+++ b/lib.c
@@ -281,7 +281,7 @@ val subtypep(val sub, val sup)
} else if (sup == list_s) {
return tnil(sub == null_s || sub == cons_s || sub == lcons_s);
} else if (sup == sequence_s) {
- val sub_struct = find_struct_type(sub);
+ val sub_struct = if3(struct_type_p(sub), sub, find_struct_type(sub));
if (sub_struct) {
if (get_special_slot_by_type(sub_struct, length_m) ||
get_special_slot_by_type(sub_struct, car_m))
@@ -294,11 +294,11 @@ val subtypep(val sub, val sup)
} else if (sup == string_s) {
return tnil(sub == str_s || sub == lit_s || sub == lstr_s);
} else if (sup == struct_s) {
- return tnil(find_struct_type(sub));
+ return tnil(struct_type_p(sub) || find_struct_type(sub));
} else {
{
- val sub_struct = find_struct_type(sub);
- val sup_struct = find_struct_type(sup);
+ val sub_struct = if3(struct_type_p(sub), sub, find_struct_type(sub));
+ val sup_struct = if3(struct_type_p(sup), sup, find_struct_type(sup));
if (sub_struct && sup_struct)
return struct_subtype_p(sub_struct, sup_struct);