summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2004-01-04 23:43:20 +0000
committerMarius Vollmer <mvo@zagadka.de>2004-01-04 23:43:20 +0000
commite911f3ff4ba85420e399258faa8274c73446dfd3 (patch)
treeaff858427fa2574fe472bbe6d27ad8b06d58f5bb
parent185e369a7f8fa3f79b646803fd2b0e2edecc186d (diff)
downloadguile-e911f3ff4ba85420e399258faa8274c73446dfd3.tar.gz
Minor markup fixes.
-rw-r--r--doc/ref/scheme-control.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/ref/scheme-control.texi b/doc/ref/scheme-control.texi
index 49632ea7e..af574e90a 100644
--- a/doc/ref/scheme-control.texi
+++ b/doc/ref/scheme-control.texi
@@ -24,7 +24,7 @@ function that has already exited. This might cause some functions to
return more than once.
In general, these non-local jumps are done by invoking
-@emph{continuations} that have previously been captured using
+@dfn{continuations} that have previously been captured using
@code{call-with-current-continuation}. Guile also offers a slightly
restricted set of functions, @code{catch} and @code{throw}, that can
only be used for non-local exits. This restriction makes them more
@@ -57,7 +57,7 @@ when control enters non-locally.
Scheme code can use the @code{dynamic-wind} function to arrange the
setting and resetting of the global state. C code could use the
corresponding @code{scm_internal_dynamic_wind} function, but it might
-prefer to use the @emph{frames} concept that is more natural for C code.
+prefer to use the @dfn{frames} concept that is more natural for C code.
@menu
* begin:: Evaluating a sequence of expressions.
@@ -444,8 +444,8 @@ flow going on as normal.
The functions @code{dynamic-wind} (@pxref{Dynamic Wind}) can be used to
ensure setup and cleanup code is run when a program locus is resumed or
-abandoned through the continuation mechanism. C code can use the
-functions explained in @pxref{Frames}.
+abandoned through the continuation mechanism. C code can use
+@dfn{frames} (@pxref{Frames}).
@sp 1
Continuations are a powerful mechanism, and can be used to implement