summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1996-10-11 07:58:13 +0000
committerJim Blandy <jimb@red-bean.com>1996-10-11 07:58:13 +0000
commitd60cebe257f54a172f54e76114604b72b19b9f14 (patch)
tree5778d4a02f9f452c446d37c72d1fb89b5d94127c
parentfe0c6dae02130c3e66f9c1c2291101821fb89f04 (diff)
downloadguile-d60cebe257f54a172f54e76114604b72b19b9f14.tar.gz
* vectors.c (scm_make_vector): Fill vectors with the undefined
value, to help make Guile Scheme code more portable to other Schemes.
-rw-r--r--libguile/vectors.c2
1 files changed, 1 insertions, 1 deletions
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);