diff options
author | Ludovic Courtès <ludo@gnu.org> | 2010-02-13 23:50:06 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2010-02-13 23:50:06 +0100 |
commit | 4adf9a7e2750593e444a2c7d950e194294242896 (patch) | |
tree | 2db5470fe0f775203924cd3db5c217775839b568 | |
parent | acbccb0c834e3d28d14c60c98c730969edcdfbcc (diff) | |
download | guile-4adf9a7e2750593e444a2c7d950e194294242896.tar.gz |
Document the maximum number of arguments for a subr.
* doc/ref/api-procedures.texi (Primitive Procedures): Specify the
maximum number of arguments. Patch by guign@mails.selgrad.org.
-rw-r--r-- | doc/ref/api-procedures.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ref/api-procedures.texi b/doc/ref/api-procedures.texi index 4639881b5..535d05907 100644 --- a/doc/ref/api-procedures.texi +++ b/doc/ref/api-procedures.texi @@ -112,7 +112,7 @@ the given @var{name} but no environment binding will be created. The arguments @var{req}, @var{opt} and @var{rst} specify the number of required, optional and ``rest'' arguments respectively. The total number of these arguments should match the actual number of arguments -to @var{fcn}. The number of rest arguments should be 0 or 1. +to @var{fcn}, but may not exceed 10. The number of rest arguments should be 0 or 1. @code{scm_c_make_gsubr} returns a value of type @code{SCM} which is a ``handle'' for the procedure. @end deftypefun |