mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-18 01:30:27 +02:00
* Replace function scm_makstr with new function scm_allocate_string.
This commit is contained in:
parent
3b9e23a7b6
commit
be54b15d85
12 changed files with 66 additions and 20 deletions
|
@ -186,7 +186,7 @@ scm_make_uve (long k, SCM prot)
|
|||
else if (SCM_CHARP (prot))
|
||||
{
|
||||
i = sizeof (char) * k;
|
||||
return scm_makstr (i, 0);
|
||||
return scm_allocate_string (i);
|
||||
}
|
||||
else if (SCM_INUMP (prot))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue