summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2011-03-08 21:06:12 +0100
committerAndy Wingo <wingo@pobox.com>2011-03-08 21:06:12 +0100
commit13459a961946526dc8f1277a6d4d319f848da1ab (patch)
tree93ab7568544379b637277c7813ac178805754326
parentf32e67be0b1390f22382eed10459016ca37c126d (diff)
downloadguile-13459a961946526dc8f1277a6d4d319f848da1ab.tar.gz
document scm_call_{5,6,n}
* doc/ref/api-evaluation.texi (Fly Evaluation): Document scm_call_{5,6,n}.
-rw-r--r--doc/ref/api-evaluation.texi8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/ref/api-evaluation.texi b/doc/ref/api-evaluation.texi
index b976715db..16bfaf05a 100644
--- a/doc/ref/api-evaluation.texi
+++ b/doc/ref/api-evaluation.texi
@@ -493,9 +493,17 @@ then there's no @var{arg1}@dots{}@var{argN} and @var{arg} is the
@deffnx {C Function} scm_call_2 (proc, arg1, arg2)
@deffnx {C Function} scm_call_3 (proc, arg1, arg2, arg3)
@deffnx {C Function} scm_call_4 (proc, arg1, arg2, arg3, arg4)
+@deffnx {C Function} scm_call_5 (proc, arg1, arg2, arg3, arg4, arg5)
+@deffnx {C Function} scm_call_6 (proc, arg1, arg2, arg3, arg4, arg5, arg6)
Call @var{proc} with the given arguments.
@end deffn
+@deffn {C Function} scm_call_n (proc, argv, nargs)
+Call @var{proc} with the array of arguments @var{argv}, as a
+@code{SCM*}. The length of the arguments should be passed in
+@var{nargs}, as a @code{size_t}.
+@end deffn
+
@deffn {Scheme Procedure} apply:nconc2last lst
@deffnx {C Function} scm_nconc2last (lst)
@var{lst} should be a list (@var{arg1} @dots{} @var{argN}