~ chicken-core (chicken-5) 226837f36d43ef438f8b2bdb3cc9845525de08b0
commit 226837f36d43ef438f8b2bdb3cc9845525de08b0
Author: felix <felix@call-with-current-continuation.org>
AuthorDate: Fri Aug 6 04:28:40 2010 -0400
Commit: felix <felix@call-with-current-continuation.org>
CommitDate: Fri Aug 6 04:28:40 2010 -0400
added some missing initial ptable entries
diff --git a/runtime.c b/runtime.c
index aed3da7f..e41d9aa7 100644
--- a/runtime.c
+++ b/runtime.c
@@ -791,6 +791,10 @@ static C_PTABLE_ENTRY *create_initial_ptable()
C_pte(C_locative_ref);
C_pte(C_call_with_cthulhu);
C_pte(C_dunload);
+ C_pte(C_copy_closure);
+ C_pte(C_dump_heap_state);
+ C_pte(C_filter_heap_objects);
+
pt[ i ].id = NULL;
return pt;
}
Trap