diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2002-03-16 00:27:25 +0000 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2002-03-16 00:27:25 +0000 |
commit | 387d418c555b23f4637bbc7e6ff0566435aae30d (patch) | |
tree | 1e34a3bc89e5d06a71149197ea4453c00b04b96a /libguile/hooks.c | |
parent | b193d130d8cb56e459e07515c7fec0373d4d26e9 (diff) | |
download | guile-387d418c555b23f4637bbc7e6ff0566435aae30d.tar.gz |
* Manual updates on hooks and features.
* Fix scm_t_c_hookype_t corruption.
Diffstat (limited to 'libguile/hooks.c')
-rw-r--r-- | libguile/hooks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/hooks.c b/libguile/hooks.c index bada6164e..ade502e54 100644 --- a/libguile/hooks.c +++ b/libguile/hooks.c @@ -64,7 +64,7 @@ */ void -scm_c_hook_init (scm_t_c_hook *hook, void *hook_data, scm_t_c_hookype_t type) +scm_c_hook_init (scm_t_c_hook *hook, void *hook_data, scm_t_c_hook_type type) { hook->first = 0; hook->type = type; @@ -113,7 +113,7 @@ void * scm_c_hook_run (scm_t_c_hook *hook, void *data) { scm_t_c_hook_entry *entry = hook->first; - scm_t_c_hookype_t type = hook->type; + scm_t_c_hook_type type = hook->type; void *res = 0; while (entry) { |