diff options
author | Kevin Ryde <user42@zip.com.au> | 2005-06-05 20:44:53 +0000 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2005-06-05 20:44:53 +0000 |
commit | c2110081713df0d726b3145ee8fe5535b89d7f87 (patch) | |
tree | 8ae2a7ade529096e84560008cbffad77fbf0ad67 /doc/ref/api-init.texi | |
parent | da6773f3f5b12c458a672e376edb3c2c3e57d75f (diff) | |
download | guile-c2110081713df0d726b3145ee8fe5535b89d7f87.tar.gz |
{} groups around "void*" C return types.
Diffstat (limited to 'doc/ref/api-init.texi')
-rw-r--r-- | doc/ref/api-init.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ref/api-init.texi b/doc/ref/api-init.texi index 802c22df1..651b2b98f 100644 --- a/doc/ref/api-init.texi +++ b/doc/ref/api-init.texi @@ -21,7 +21,7 @@ Threads that are created by @code{call-with-new-thread} or @code{scm_spawn_thread} start out in guile mode so you don't need to initialize them. -@deftypefn {C Function} void *scm_with_guile (void *(*func)(void *), void *data) +@deftypefn {C Function} {void *} scm_with_guile (void *(*func)(void *), void *data) Call @var{func}, passing it @var{data} and return what @var{func} returns. While @var{func} is running, the current thread is in guile mode and can thus use the Guile API. |