From d60cebe257f54a172f54e76114604b72b19b9f14 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Fri, 11 Oct 1996 07:58:13 +0000 Subject: [PATCH] * vectors.c (scm_make_vector): Fill vectors with the undefined value, to help make Guile Scheme code more portable to other Schemes. --- libguile/vectors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/vectors.c b/libguile/vectors.c index d474f463d..05e07d046 100644 --- a/libguile/vectors.c +++ b/libguile/vectors.c @@ -156,7 +156,7 @@ scm_make_vector(k, fill, multip) SCM_ASSERT(SCM_INUMP(k) && (0 <= SCM_INUM (k)), k, SCM_ARG1, s_make_vector); if (SCM_UNBNDP(fill)) - fill = SCM_EOL; + fill = SCM_UNSPECIFIED; multi = !(SCM_UNBNDP(multip) || SCM_FALSEP(multip)); i = SCM_INUM(k); SCM_NEWCELL(v);