diff options
-rw-r--r-- | libguile/ChangeLog | 6 | ||||
-rw-r--r-- | libguile/unif.c | 3 |
2 files changed, 8 insertions, 1 deletions
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 <ghouston@freewire.co.uk> + + * 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 <ghouston@freewire.co.uk> * 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)) { |