diff options
author | Daniel Llorens <daniel.llorens@bluewin.ch> | 2013-04-29 15:37:52 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2014-01-27 21:48:44 +0100 |
commit | d0b47b494682ebe36f8a93dbc96afe6cae2c5e13 (patch) | |
tree | 350001a3bb34238ee0a5ffe4872aebb8fe53a640 /libguile/strings.c | |
parent | 99c0a58a2fa392ac14017da8874fbdbfd2f05900 (diff) | |
download | guile-d0b47b494682ebe36f8a93dbc96afe6cae2c5e13.tar.gz |
Rename scm_t_array_handle.array to .root
Globally rename this field (after shared-array-root), since it's not an array.
Diffstat (limited to 'libguile/strings.c')
-rw-r--r-- | libguile/strings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/strings.c b/libguile/strings.c index 9ca1d3333..5adebb198 100644 --- a/libguile/strings.c +++ b/libguile/strings.c @@ -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; |