fix broken GC-traversal registration

Bug was part of 95f6a2342b
This commit is contained in:
Matthew Flatt 2016-07-14 06:58:59 -06:00
parent 689452e1c9
commit 521ff7cc67

View File

@ -738,8 +738,8 @@ void scheme_register_traversers(void)
GC_REG_TRAV(scheme_noninline_proc_type, small_object);
GC_REG_TRAV(scheme_prune_context_type, small_object);
GC_REG_TRAV(scheme_proc_shape_type, struct_proc_shape);
GC_REG_TRAV(scheme_struct_proc_shape_type, small_atomic_obj);
GC_REG_TRAV(scheme_proc_shape_type, small_atomic_obj);
GC_REG_TRAV(scheme_struct_proc_shape_type, struct_proc_shape);
GC_REG_TRAV(scheme_environment_variables_type, small_object);
GC_REG_TRAV(scheme_syntax_property_preserve_type, small_object);