summaryrefslogtreecommitdiff
path: root/doc/ref/api-evaluation.texi
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2012-01-30 11:02:29 -0500
committerMark H Weaver <mhw@netris.org>2012-01-30 11:02:29 -0500
commit07c2ca0f0d56ebe515cb4ee9f1c3f4b3e824ca7b (patch)
tree119fbc9dca52f063b6376d55e6fd780eded56fc2 /doc/ref/api-evaluation.texi
parent741b8a2300ef329cf5691a3c35b920df68f093e2 (diff)
downloadguile-07c2ca0f0d56ebe515cb4ee9f1c3f4b3e824ca7b.tar.gz
Rename scm_call_varargs -> scm_call
* libguile/eval.c, libguile/eval.h, doc/ref/api-evaluation.texi, test-suite/standalone/test-loose-ends.c, NEWS: Rename scm_call_varargs -> scm_call Suggested by Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'doc/ref/api-evaluation.texi')
-rw-r--r--doc/ref/api-evaluation.texi10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/ref/api-evaluation.texi b/doc/ref/api-evaluation.texi
index de541943e..8c41d1efd 100644
--- a/doc/ref/api-evaluation.texi
+++ b/doc/ref/api-evaluation.texi
@@ -539,15 +539,15 @@ then there's no @var{arg1}@dots{}@var{argN} and @var{arg} is the
Call @var{proc} with the given arguments.
@end deffn
-@deffn {C Function} scm_call_varargs (proc, ...)
+@deffn {C Function} scm_call (proc, ...)
Call @var{proc} with any number of arguments. The argument list must be
terminated by @code{SCM_UNDEFINED}. For example:
@example
-scm_call_varargs (scm_c_public_ref ("guile", "+"),
- scm_from_int (1),
- scm_from_int (2),
- SCM_UNDEFINED);
+scm_call (scm_c_public_ref ("guile", "+"),
+ scm_from_int (1),
+ scm_from_int (2),
+ SCM_UNDEFINED);
@end example
@end deffn