diff options
author | Keisuke Nishida <kxn30@po.cwru.edu> | 2001-06-26 15:46:40 +0000 |
---|---|---|
committer | Keisuke Nishida <kxn30@po.cwru.edu> | 2001-06-26 15:46:40 +0000 |
commit | fdc2839563bd8c821221a4869f27255ae77f757b (patch) | |
tree | 63bc043598fe6d9c2cac3d3c7251898cc306f5cd /libguile/debug.c | |
parent | 36284627919a6968174b5f17369349187a2b4b1b (diff) | |
download | guile-fdc2839563bd8c821221a4869f27255ae77f757b.tar.gz |
* eval.c (scm_call_0, scm_call_1, scm_call_2, scm_call_3,
scm_apply_0, scm_apply_1, scm_apply_2, scm_apply_3): New functions.
Diffstat (limited to 'libguile/debug.c')
-rw-r--r-- | libguile/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/debug.c b/libguile/debug.c index 29d259d60..c4c738009 100644 --- a/libguile/debug.c +++ b/libguile/debug.c @@ -120,7 +120,7 @@ static SCM with_traps_inner (void *data) { SCM thunk = SCM_PACK (data); - return scm_apply (thunk, SCM_EOL, SCM_EOL); + return scm_call_0 (thunk); } SCM_DEFINE (scm_with_traps, "with-traps", 1, 0, 0, |