diff options
-rw-r--r-- | doc/ref/scheme-compound.texi | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/ref/scheme-compound.texi b/doc/ref/scheme-compound.texi index b06a646da..b8ab32ecb 100644 --- a/doc/ref/scheme-compound.texi +++ b/doc/ref/scheme-compound.texi @@ -253,8 +253,12 @@ themselves be @code{SCM_UNDEFINED}, or @code{scm_list_n} will terminate at that point. @end deffn +@c C Function scm_cons_star(arg1,rest) used to be documented here, +@c but it's not really a useful interface, since it expects the +@c caller to have already consed up all but the first argument +@c already. +@c @deffn {Scheme Procedure} cons* arg1 arg2 @dots{} -@deffnx {C Function} scm_cons_star (arg1, rest) Like @code{list}, but the last arg provides the tail of the constructed list, returning @code{(cons @var{arg1} (cons @var{arg2} (cons @dots{} @var{argn})))}. Requires at least one |