diff options
author | Kevin Ryde <user42@zip.com.au> | 2003-07-07 22:00:34 +0000 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2003-07-07 22:00:34 +0000 |
commit | 7a7b738455f2da43b31f1b92e1a8d8bbe3f10a3d (patch) | |
tree | fd9bcbcd88134a2b078a61f844e262a2e056ae9b | |
parent | c2dfff19f6ddbaa6464eb896260569fe4197b0fd (diff) | |
download | guile-7a7b738455f2da43b31f1b92e1a8d8bbe3f10a3d.tar.gz |
(scm_call_with_new_thread): In docstring, use "( )"
outside @var to quieten makeinfo, and use @code.
-rw-r--r-- | libguile/threads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/threads.c b/libguile/threads.c index 5be5b8267..ba2ed3b2b 100644 --- a/libguile/threads.c +++ b/libguile/threads.c @@ -418,7 +418,7 @@ create_thread (scm_t_catch_body body, void *body_data, SCM_DEFINE (scm_call_with_new_thread, "call-with-new-thread", 2, 0, 0, (SCM thunk, SCM handler), -"Evaluate @var{(thunk)} in a new thread, and new dynamic context, " +"Evaluate @code{(@var{thunk})} in a new thread, and new dynamic context, " "returning a new thread object representing the thread. " "If an error occurs during evaluation, call error-thunk, passing it an " "error code describing the condition. " |