diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1998-07-12 00:10:02 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1998-07-12 00:10:02 +0000 |
commit | a8741caa54fa6fc14bc290c40cc97361db850953 (patch) | |
tree | 0cc6d2e9e5f5dc6c85497eb51de3b5339dec95b6 /libguile/init.c | |
parent | a61ef59b0bb8c556d2ffb950b7f24674cd61034b (diff) | |
download | guile-a8741caa54fa6fc14bc290c40cc97361db850953.tar.gz |
* eval.c, filesys.c, fluids.c, gc.c, gh_data.c, init.c, kw.c,
net_db.c, posix.c, print.c, regex-posix.c, scmsigs.c, socket.c,
stime.c, symbols.c, unif.c, vectors.c, weaks.c: Removed third
argument in call to scm_make_vector.
Diffstat (limited to 'libguile/init.c')
-rw-r--r-- | libguile/init.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libguile/init.c b/libguile/init.c index 4eb3d5716..030e02452 100644 --- a/libguile/init.c +++ b/libguile/init.c @@ -159,8 +159,7 @@ start_stack (base) /* Create the look-aside stack for variables that are shared between * captured continuations. */ - scm_continuation_stack = scm_make_vector (SCM_MAKINUM (512), - SCM_UNDEFINED, SCM_UNDEFINED); + scm_continuation_stack = scm_make_vector (SCM_MAKINUM (512), SCM_UNDEFINED); /* The continuation stack is further initialized by restart_stack. */ /* The remainder of stack initialization is factored out to another |