1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 04:10:18 +02:00

* objects.c (scm_init_objects): Initialize destructor slot of the

primordial entity class.
This commit is contained in:
Mikael Djurfeldt 1999-06-23 11:16:28 +00:00
parent d6af5a438b
commit 135e76f876

View file

@ -380,6 +380,7 @@ scm_init_objects ()
scm_sysintern ("<operator-class>", ot);
scm_metaclass_operator = ot;
SCM_SET_CLASS_FLAGS (et, SCM_CLASSF_OPERATOR | SCM_CLASSF_ENTITY);
SCM_SET_CLASS_DESTRUCTOR (et, scm_struct_free_entity);
scm_sysintern ("<entity>", et);
#include "objects.x"