doc: In the microcode the "context" is called "dynamic-state".
authorMatt Birkholz <puck@birchwood-abbey.net>
Sun, 12 Jul 2015 21:52:32 +0000 (14:52 -0700)
committerMatt Birkholz <puck@birchwood-abbey.net>
Mon, 17 Aug 2015 23:52:57 +0000 (16:52 -0700)
And unparenthesize a sentence.

doc/ref-manual/procedures.texi

index 722c82aa0dc54d49e539b9ecbcdfc55ee5dc2749..543aa8c9af23796bfaa6d4d74f4b6d2ad7a801e7 100644 (file)
@@ -365,7 +365,7 @@ Returns @code{#t} if @var{object} is a continuation; otherwise returns
 @cindex escape procedure, alternate invocation
 @var{Thunk} must be a procedure of no arguments.  Conceptually,@*
 @code{within-continuation} invokes @var{continuation} on the result of
-invoking @var{thunk}, but @var{thunk} is executed in the dynamic context
+invoking @var{thunk}, but @var{thunk} is executed in the dynamic state
 of @var{continuation}.  In other words, the ``current'' continuation is
 abandoned before @var{thunk} is invoked.
 @end deffn
@@ -373,9 +373,9 @@ abandoned before @var{thunk} is invoked.
 @deffn procedure dynamic-wind before thunk after
 Calls @var{thunk} without arguments, returning the result(s) of this
 call.  @var{Before} and @var{after} are called, also without arguments,
-as required by the following rules (note that in the absence of calls to
+as required by the following rules.  Note that in the absence of calls to
 continuations captured using @code{call-with-current-continuation} the
-three arguments are called once each, in order).  @var{Before} is called
+three arguments are called once each, in order.  @var{Before} is called
 whenever execution enters the dynamic extent of the call to @var{thunk}
 and @var{after} is called whenever it exits that dynamic extent.  The
 dynamic extent of a procedure call is the period between when the call