* unif.c (scm_list_to_uniform_array): call
authorGary Houston <ghouston@arglist.com>
Sat, 20 Nov 1999 19:21:37 +0000 (19:21 +0000)
committerGary Houston <ghouston@arglist.com>
Sat, 20 Nov 1999 19:21:37 +0000 (19:21 +0000)
scm_dimensions_to_uniform_array with a third argument of
SCM_UNDEFINED instead of SCM_EOL.

libguile/ChangeLog
libguile/unif.c

index 3177ea4..9bc2915 100644 (file)
@@ -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
index d311c54..98818e5 100644 (file)
@@ -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))
 
     {