fix hashing of native closures

svn: r2344
This commit is contained in:
Matthew Flatt 2006-03-02 12:19:14 +00:00
parent 0ac3aa6669
commit dc3dc48ea3

View File

@ -773,6 +773,7 @@ void scheme_init_hash_key_procs(void)
PROC(scheme_prim_type, hash_prim); PROC(scheme_prim_type, hash_prim);
PROC(scheme_closed_prim_type, hash_prim); PROC(scheme_closed_prim_type, hash_prim);
PROC(scheme_closure_type, hash_general); PROC(scheme_closure_type, hash_general);
PROC(scheme_native_closure_type, hash_general);
PROC(scheme_case_closure_type, hash_case); PROC(scheme_case_closure_type, hash_case);
PROC(scheme_cont_type, hash_general); PROC(scheme_cont_type, hash_general);
PROC(scheme_escaping_cont_type, hash_general); PROC(scheme_escaping_cont_type, hash_general);