diff options
author | Jim Blandy <jimb@red-bean.com> | 1996-09-11 20:25:13 +0000 |
---|---|---|
committer | Jim Blandy <jimb@red-bean.com> | 1996-09-11 20:25:13 +0000 |
commit | bba4bfdbda134982c37d4f251224c3065b4248f8 (patch) | |
tree | 1ebeb7d6111c58a8d75017210778fd423720c1fc /libguile/debug.c | |
parent | e95efac2fbeff5e95c68b296c467688cce31e969 (diff) | |
download | guile-bba4bfdbda134982c37d4f251224c3065b4248f8.tar.gz |
* debug.c (scm_single_step, scm_memoized, scm_lookup_soft):
Definition typos corrected.
Diffstat (limited to 'libguile/debug.c')
-rw-r--r-- | libguile/debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/debug.c b/libguile/debug.c index b614114d3..18b5de7cd 100644 --- a/libguile/debug.c +++ b/libguile/debug.c @@ -96,7 +96,7 @@ SCM scm_single_step (SCM cont, SCM val) #else SCM -scm_single_step (val) +scm_single_step (cont, val) SCM cont, SCM val; #endif { @@ -156,7 +156,7 @@ SCM scm_make_memoized (SCM exp, SCM env) #else SCM -scm_make_memoized (env) +scm_make_memoized (exp, env) SCM exp, SCM env; #endif { @@ -691,7 +691,7 @@ scm_lookup_soft (SCM var, SCM genv) #else SCM * scm_lookup_soft (var, genv) - SCM vloc; + SCM var; SCM genv; #endif { |