diff options
author | Andy Wingo <wingo@pobox.com> | 2009-12-05 11:16:54 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2009-12-05 11:16:54 +0100 |
commit | 1be8532fdb7715451b939571f9a147635df9cd65 (patch) | |
tree | fc68f9fdbd401eb9ad323762a08d6593d98f0e75 /libguile/struct.c | |
parent | dd3a26f3da712564a294ad5890de12bcc6cb8849 (diff) | |
download | guile-1be8532fdb7715451b939571f9a147635df9cd65.tar.gz |
some scm_i_init_guile cleanups
* libguile/init.c (scm_i_init_guile): Since hash tables are tc7 objects,
things that depend on hash tables no longer depend on smobs, so move
smob_prehistory up a bit. No more struct_prehistory.
* libguile/struct.h:
* libguile/struct.c (scm_struct_prehistory): Remove empty function.
Diffstat (limited to 'libguile/struct.c')
-rw-r--r-- | libguile/struct.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libguile/struct.c b/libguile/struct.c index 9fd73a6c0..cd2c441e3 100644 --- a/libguile/struct.c +++ b/libguile/struct.c @@ -854,12 +854,6 @@ scm_print_struct (SCM exp, SCM port, scm_print_state *pstate) } void -scm_struct_prehistory () -{ - /* Empty. */ -} - -void scm_init_struct () { SCM scm_applicable_struct_vtable_vtable; |