summaryrefslogtreecommitdiffstats
path: root/struct.c
diff options
context:
space:
mode:
Diffstat (limited to 'struct.c')
-rw-r--r--struct.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/struct.c b/struct.c
index e8a862a7..e12ffcec 100644
--- a/struct.c
+++ b/struct.c
@@ -1885,7 +1885,10 @@ val get_slot_syms(val package, val is_current, val method_only)
val slot_types(val slot)
{
- return gethash(slot_type_hash, slot);
+ uses_or2;
+ return or2(gethash(slot_type_hash, slot),
+ if2(lisplib_try_load(slot),
+ gethash(slot_type_hash, slot)));
}
val static_slot_types(val slot)