document scm_call_{5,6,n}
authorAndy Wingo <wingo@pobox.com>
Tue, 8 Mar 2011 20:06:12 +0000 (21:06 +0100)
committerAndy Wingo <wingo@pobox.com>
Tue, 8 Mar 2011 20:06:12 +0000 (21:06 +0100)
* doc/ref/api-evaluation.texi (Fly Evaluation): Document
  scm_call_{5,6,n}.

doc/ref/api-evaluation.texi

index b976715..16bfaf0 100644 (file)
@@ -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}