summaryrefslogtreecommitdiff
path: root/libguile/values.c
diff options
context:
space:
mode:
authorMartin Grabmüller <mgrabmue@cs.tu-berlin.de>2001-02-17 11:24:30 +0000
committerMartin Grabmüller <mgrabmue@cs.tu-berlin.de>2001-02-17 11:24:30 +0000
commit647e35e27c4073bf1c07aa877e01450b86acab6e (patch)
tree35ac88f7b2b136d627734bcd9e5a428ffe1b961a /libguile/values.c
parent03ba3d5b682e6e983d5219fe76174b6dc851f6c7 (diff)
downloadguile-647e35e27c4073bf1c07aa877e01450b86acab6e.tar.gz
(scm_values): Added texinfo markup.
Diffstat (limited to 'libguile/values.c')
-rw-r--r--libguile/values.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libguile/values.c b/libguile/values.c
index 6575a147c..59638174b 100644
--- a/libguile/values.c
+++ b/libguile/values.c
@@ -77,10 +77,10 @@ print_values (SCM obj, SCM pwps)
SCM_DEFINE (scm_values, "values", 0, 0, 1,
(SCM args),
"Delivers all of its arguments to its continuation. Except for\n"
- "continuations created by the `call-with-values' procedure, all\n"
- "continuations take exactly one value. The effect of passing no\n"
- "value or more than one value to continuations that were not\n"
- "created by call-with-values is unspecified.")
+ "continuations created by the @code{call-with-values} procedure,\n"
+ "all continuations take exactly one value. The effect of\n"
+ "passing no value or more than one value to continuations that\n"
+ "were not created by @code{call-with-values} is unspecified.")
#define FUNC_NAME s_scm_values
{
long n;
@@ -105,7 +105,7 @@ SCM_DEFINE (scm_call_with_values, "call-with-values", 2, 0, 0,
"continuation that, when passed some values, calls the\n"
"@var{consumer} procedure with those values as arguments. The\n"
"continuation for the call to @var{consumer} is the continuation\n"
- "of the call to call-with-values.\n\n"
+ "of the call to @code{call-with-values}.\n\n"
"@example\n"
"(call-with-values (lambda () (values 4 5))\n"
" (lambda (a b) b))\n"