From beec890ea875be85e890b700d2e570ce7bd2920d Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Thu, 3 Jul 1997 15:22:59 +0000 Subject: [PATCH] * root.c (cwdr_outer_body): Bugfix: Pass `c' instead of `&c' to scm_internal_catch. --- libguile/root.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/root.c b/libguile/root.c index 5d9cbc2e2..910ee3178 100644 --- a/libguile/root.c +++ b/libguile/root.c @@ -224,7 +224,7 @@ cwdr_outer_body (void *data, SCM jmpbuf) struct cwdr_body_data *c = (struct cwdr_body_data *) data; return scm_internal_catch (SCM_BOOL_T, - cwdr_inner_body, &c, + cwdr_inner_body, c, scm_handle_by_proc, &c->handler); }