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/print.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/print.c')
-rw-r--r-- | libguile/print.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libguile/print.c b/libguile/print.c index cdd4b892b..2d8c7609e 100644 --- a/libguile/print.c +++ b/libguile/print.c @@ -180,7 +180,6 @@ make_print_state () SCM_EOL); scm_print_state *pstate = SCM_PRINT_STATE (print_state); pstate->ref_vect = scm_make_vector (SCM_MAKINUM (PSTATE_SIZE), - SCM_UNDEFINED, SCM_UNDEFINED); pstate->ref_stack = SCM_VELTS (pstate->ref_vect); pstate->ceiling = SCM_LENGTH (pstate->ref_vect); |