diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2001-05-08 10:23:17 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2001-05-08 10:23:17 +0000 |
commit | 56e55ac7cfcfefc033ac6da130bafe745e9e109f (patch) | |
tree | 60635193bcbac3dcd1e25c76545b36a57d134e3b /libguile/init.c | |
parent | 7cfbc4f7b0b709ffe5c45b36cfa55cbff9731ecb (diff) | |
download | guile-56e55ac7cfcfefc033ac6da130bafe745e9e109f.tar.gz |
* Removed deprecated hook names.
* Fix use of SCM_FLOBUFLEN.
Diffstat (limited to 'libguile/init.c')
-rw-r--r-- | libguile/init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/init.c b/libguile/init.c index 4feb92c2d..c53d1a4ac 100644 --- a/libguile/init.c +++ b/libguile/init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995,1996,1997,1998,1999, 2000, 2001 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -508,7 +508,7 @@ scm_init_guile_1 (SCM_STACKITEM *base) scm_init_deprecation (); /* Requires hashtabs */ scm_init_objprop (); scm_init_properties (); - scm_init_hooks (); /* Requires objprop until hook names are removed */ + scm_init_hooks (); /* Requires smob_prehistory */ scm_init_gc (); /* Requires hooks, async */ #ifdef GUILE_ISELECT scm_init_iselect (); |