mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-14 15:40:19 +02:00
* Replaced SCM_CHARS with SCM_STRING_CHARS or SCM_SYMBOL_CHARS.
This commit is contained in:
parent
c1aef03710
commit
86c991c2a2
17 changed files with 48 additions and 32 deletions
|
@ -186,7 +186,7 @@ SCM
|
|||
scm_makfromstr (const char *src, scm_sizet len, int dummy)
|
||||
{
|
||||
SCM s = scm_makstr (len, 0);
|
||||
char *dst = SCM_CHARS (s);
|
||||
char *dst = SCM_STRING_CHARS (s);
|
||||
|
||||
while (len--)
|
||||
*dst++ = *src++;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue