mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-14 07:30:32 +02:00
* 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.
This commit is contained in:
parent
a61ef59b0b
commit
a8741caa54
17 changed files with 27 additions and 35 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue