mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-24 12:20:20 +02:00
* Docstring fixes and corresponding manual updates.
This commit is contained in:
parent
8e55f36e48
commit
5a5464e533
54 changed files with 4007 additions and 2215 deletions
|
@ -58,8 +58,7 @@
|
|||
|
||||
SCM_DEFINE (scm_string_p, "string?", 1, 0, 0,
|
||||
(SCM obj),
|
||||
"Return @code{#t} iff @var{obj} is a string, else returns\n"
|
||||
"@code{#f}.")
|
||||
"Return @code{#t} if @var{obj} is a string, else @code{#f}.")
|
||||
#define FUNC_NAME s_scm_string_p
|
||||
{
|
||||
return SCM_BOOL (SCM_STRINGP (obj));
|
||||
|
@ -88,7 +87,7 @@ SCM_REGISTER_PROC (s_scm_list_to_string, "list->string", 1, 0, 0, scm_string);
|
|||
|
||||
SCM_DEFINE (scm_string, "string", 0, 0, 1,
|
||||
(SCM chrs),
|
||||
"@deffnx primitive list->string chrs\n"
|
||||
"@deffnx {Scheme Procedure} list->string chrs\n"
|
||||
"Return a newly allocated string composed of the arguments,\n"
|
||||
"@var{chrs}.")
|
||||
#define FUNC_NAME s_scm_string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue