diff options
Diffstat (limited to 'libguile/gh_data.c')
-rw-r--r-- | libguile/gh_data.c | 5 |
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 */ |