1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 22:31:12 +02:00

2002-01-29 Stefan Jahn <stefan@lkcc.org>

* gh.texi (scm transition summary): Documented gh equivalents
        `scm_c_string2str', `scm_c_substring2str' and `scm_c_symbol2str'
        and removed the appropriate FIXME's.
This commit is contained in:
Stefan Jahn 2002-01-29 10:46:13 +00:00
parent af68e5e5a6
commit f74fa0a0fd
2 changed files with 15 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2002-01-29 Stefan Jahn <stefan@lkcc.org>
* gh.texi (scm transition summary): Documented gh equivalents
`scm_c_string2str', `scm_c_substring2str' and `scm_c_symbol2str'
and removed the appropriate FIXME's.
2002-01-14 Marius Vollmer <marius.vollmer@uni-dortmund.de>
* Makefile.am (autoconf-macros.texi): Also set GUILE_LOAD_PATH

View file

@ -978,13 +978,19 @@ a @code{SCM} value is a character before using @code{SCM_CHAR} to
extract the character value, use the @code{SCM_VALIDATE_CHAR} macro.
@item @code{gh_scm2newstr}
No direct scm equivalent. [FIXME]
Instead of @code{gh_scm2newstr (@var{obj}, @var{lenp})} use
@code{scm_c_string2str (@var{obj}, @var{str}, @var{lenp})}. With the
additional @var{str} argument the user can pass a pre-allocated memory
chunk or leave it passing NULL.
@item @code{gh_get_substr}
No direct scm equivalent. [FIXME]
Use the @code{scm_c_substring2str (@var{obj}, @var{str}, @var{start},
@var{len})} function instead.
@item @code{gh_symbol2newstr}
No direct scm equivalent. [FIXME]
Use the @code{scm_c_symbol2str (@var{obj}, @var{str}, @var{lenp})} function
instead. With the additional @var{str} argument the user can pass a
pre-allocated memory chunk or leave it passing NULL.
@item @code{gh_scm2chars}
No direct scm equivalent. [FIXME]