summaryrefslogtreecommitdiff
path: root/libguile/gh_data.c
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>1998-07-12 00:10:02 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>1998-07-12 00:10:02 +0000
commita8741caa54fa6fc14bc290c40cc97361db850953 (patch)
tree0cc6d2e9e5f5dc6c85497eb51de3b5339dec95b6 /libguile/gh_data.c
parenta61ef59b0bb8c556d2ffb950b7f24674cd61034b (diff)
downloadguile-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/gh_data.c')
-rw-r--r--libguile/gh_data.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/libguile/gh_data.c b/libguile/gh_data.c
index f2866e39a..92a70d3ca 100644
--- a/libguile/gh_data.c
+++ b/libguile/gh_data.c
@@ -352,10 +352,7 @@ gh_symbol2newstr (SCM sym, int *lenp)
SCM
gh_make_vector (SCM len, SCM fill)
{
- /* scm_make_vector() takes a third boolean argument which should be
- set to SCM_BOOL_T when you are dealing with multi-dimensional
- arrays; gh_make_vector() does not do multi-dimensional arrays */
- return scm_make_vector(len, fill, SCM_BOOL_F);
+ return scm_make_vector (len, fill);
}
/* set the given element of the given vector to the given value */