1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-07-05 17:20:18 +02:00

Rename scm_t_array_handle.array to .root

Globally rename this field (after shared-array-root), since it's not an array.
This commit is contained in:
Daniel Llorens 2013-04-29 15:37:52 +02:00 committed by Andy Wingo
parent 99c0a58a2f
commit d0b47b4946
9 changed files with 23 additions and 23 deletions

View file

@ -2477,7 +2477,7 @@ static void
string_get_handle (SCM v, scm_t_array_handle *h)
{
h->base = 0;
h->array = v;
h->root = v;
h->ndims = 1;
h->dims = &h->dim0;
h->dim0.lbnd = 0;