summaryrefslogtreecommitdiff
path: root/doc/ref/api-control.texi
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2010-02-07 14:16:54 +0100
committerAndy Wingo <wingo@pobox.com>2010-02-08 13:35:06 +0100
commit997659f898d94abccdcba3c444b84e3c6f6e963e (patch)
tree64f1ab2f9657b5f27d7cca16deddece915018dfe /doc/ref/api-control.texi
parentbabfc7b2c3fce452aa12fed8d89cd3fbc81e8cc8 (diff)
downloadguile-997659f898d94abccdcba3c444b84e3c6f6e963e.tar.gz
make scm_make_continuation internal
* libguile/continuations.h: * libguile/continuations.c (scm_i_make_continuation): Change from scm_make_continuation, and make internal. * libguile/vm-i-system.c (call/cc, tail-call/cc): Adapt callers. * test-suite/standalone/test-unwind.c (check_cont_body): Adapt a test. * doc/ref/api-control.texi (Continuations): Update docs.
Diffstat (limited to 'doc/ref/api-control.texi')
-rw-r--r--doc/ref/api-control.texi9
1 files changed, 0 insertions, 9 deletions
diff --git a/doc/ref/api-control.texi b/doc/ref/api-control.texi
index b220355ce..c76bdfe0c 100644
--- a/doc/ref/api-control.texi
+++ b/doc/ref/api-control.texi
@@ -410,15 +410,6 @@ invoke that continuation.
This is in common use since the latter is rather long.
@end deffn
-@deftypefn {C Function} SCM scm_make_continuation (int *first)
-Capture the current continuation as described above. The return value
-is the new continuation, and @var{*first} is set to 1.
-
-When the continuation is invoked, @code{scm_make_continuation} will
-return again, this time returning the value (or set of multiple
-values) passed in that invocation, and with @var{*first} set to 0.
-@end deftypefn
-
@sp 1
@noindent
Here is a simple example,