summaryrefslogtreecommitdiff
path: root/libguile/debug.c
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>1997-03-04 18:54:14 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>1997-03-04 18:54:14 +0000
commit2c4bd736ca7ef94bd578e1a2e53260682721fbbc (patch)
tree36d775a70b0075f507d95c5b9921892886c42a62 /libguile/debug.c
parentf4da31819e9678250ef6554ddcb16396c84ca0e2 (diff)
downloadguile-2c4bd736ca7ef94bd578e1a2e53260682721fbbc.tar.gz
* debug.c (scm_single_step): Bugfix: Call continuation with
scm_call_continuation instead of throwing to it.
Diffstat (limited to 'libguile/debug.c')
-rw-r--r--libguile/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/debug.c b/libguile/debug.c
index ac65c723c..6a42d42e6 100644
--- a/libguile/debug.c
+++ b/libguile/debug.c
@@ -116,7 +116,7 @@ scm_single_step (cont, val)
SCM_ENTER_FRAME_P = SCM_EXIT_FRAME_P = 1;
SCM_RESET_DEBUG_MODE;
SCM_ALLOW_INTS;
- scm_throw (cont, val);
+ scm_call_continuation (cont, val);
return SCM_BOOL_F; /* never returns */
}