summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib.c b/lib.c
index b4452cbb..24b39747 100644
--- a/lib.c
+++ b/lib.c
@@ -9794,6 +9794,13 @@ tail:
}
}
break;
+ case FUN:
+ if (obj->f.functype == FINTERP) {
+ val fun = obj->f.f.interp_fun;
+ populate_obj_hash(car(fun), ctx);
+ obj = cadr(fun);
+ goto tail;
+ }
default:
break;
}