From d12feca34dd502e2123258cf9d4432cf3176bc94 Mon Sep 17 00:00:00 2001 From: Gary Houston Date: Sat, 20 Nov 1999 19:21:37 +0000 Subject: [PATCH] * unif.c (scm_list_to_uniform_array): call scm_dimensions_to_uniform_array with a third argument of SCM_UNDEFINED instead of SCM_EOL. --- libguile/ChangeLog | 6 ++++++ libguile/unif.c | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 3177ea4b4..9bc29157a 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,9 @@ +1999-11-20 Gary Houston + + * unif.c (scm_list_to_uniform_array): call + scm_dimensions_to_uniform_array with a third argument of + SCM_UNDEFINED instead of SCM_EOL. + 1999-11-19 Gary Houston * the following changes allow guile to be built with the array diff --git a/libguile/unif.c b/libguile/unif.c index d311c54b7..98818e518 100644 --- a/libguile/unif.c +++ b/libguile/unif.c @@ -2103,7 +2103,8 @@ scm_list_to_uniform_array (ndim, prot, lst) if (SCM_NIMP (row)) row = SCM_CAR (row); } - ra = scm_dimensions_to_uniform_array (scm_reverse (shp), prot, SCM_EOL); + ra = scm_dimensions_to_uniform_array (scm_reverse (shp), prot, + SCM_UNDEFINED); if (SCM_NULLP (shp)) {