From 603707f49b3c4dbbde7c2a2966bd86fdbb54efa3 Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Mon, 28 Jul 2003 23:31:26 +0000 Subject: [PATCH] (List Constructors): Remove scm_cons_star, since it's not very helpful. --- doc/ref/scheme-compound.texi | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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