1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* debug.c (scm_single_step, scm_memoized, scm_lookup_soft):

Definition typos corrected.
This commit is contained in:
Jim Blandy 1996-09-11 20:25:13 +00:00
parent e95efac2fb
commit bba4bfdbda

View file

@ -96,7 +96,7 @@ SCM
scm_single_step (SCM cont, SCM val) scm_single_step (SCM cont, SCM val)
#else #else
SCM SCM
scm_single_step (val) scm_single_step (cont, val)
SCM cont, SCM val; SCM cont, SCM val;
#endif #endif
{ {
@ -156,7 +156,7 @@ SCM
scm_make_memoized (SCM exp, SCM env) scm_make_memoized (SCM exp, SCM env)
#else #else
SCM SCM
scm_make_memoized (env) scm_make_memoized (exp, env)
SCM exp, SCM env; SCM exp, SCM env;
#endif #endif
{ {
@ -691,7 +691,7 @@ scm_lookup_soft (SCM var, SCM genv)
#else #else
SCM * SCM *
scm_lookup_soft (var, genv) scm_lookup_soft (var, genv)
SCM vloc; SCM var;
SCM genv; SCM genv;
#endif #endif
{ {