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

Name the field for string backing store

* libguile/strings.h (chars): Name the field.
* libguile/strings.c (string_stringbuf, string_aliased_string)
(make_string, scm_i_string_ensure_mutable_x, scm_i_substring_shared)
(scm_i_try_narrow_string, scm_i_string_set_x): Adapt.
This commit is contained in:
Andy Wingo 2025-06-30 14:50:18 +02:00
parent 38c22e77a0
commit 8e6a06ca29
2 changed files with 8 additions and 8 deletions

View file

@ -202,7 +202,7 @@ struct scm_string
struct scm_stringbuf *stringbuf;
/* Sometimes though it aliases another string. */
struct scm_string *string;
};
} chars;
size_t start;
size_t length;
};