1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-15 08:10:17 +02:00

* struct.c, struct.h: Replace 4 procedure slots with one.

(scm_struct_i_procedure): Replaces scm_struct_i_procedure.
This commit is contained in:
Mikael Djurfeldt 1999-08-29 03:27:55 +00:00
parent 4c6fe5fca5
commit 2c53acd5c3
2 changed files with 4 additions and 7 deletions

View file

@ -391,10 +391,7 @@ scm_make_struct (vtable, tail_array_size, init)
data = scm_alloc_struct (basic_size + tail_elts,
scm_struct_entity_n_extra_words,
"make-struct");
data[scm_struct_i_proc + 0] = SCM_BOOL_F;
data[scm_struct_i_proc + 1] = SCM_BOOL_F;
data[scm_struct_i_proc + 2] = SCM_BOOL_F;
data[scm_struct_i_proc + 3] = SCM_BOOL_F;
data[scm_struct_i_procedure] = SCM_BOOL_F;
data[scm_struct_i_setter] = SCM_BOOL_F;
}
else