aboutsummaryrefslogtreecommitdiffstats
path: root/dynwind.scm
diff options
context:
space:
mode:
Diffstat (limited to 'dynwind.scm')
-rw-r--r--dynwind.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/dynwind.scm b/dynwind.scm
index c9bdb95..a6a80ab 100644
--- a/dynwind.scm
+++ b/dynwind.scm
@@ -8,7 +8,7 @@
;1. Any copy made of this software must include this copyright notice
;in full.
;
-;2. I have made no warrantee or representation that the operation of
+;2. I have made no warranty or representation that the operation of
;this software will be error-free, and I am under no obligation to
;provide any services, by way of maintenance, update, or otherwise.
;
@@ -41,7 +41,7 @@
;;;time of the error or interrupt.
(define dynamic:winds '())
-
+;@
(define (dynamic-wind <thunk1> <thunk2> <thunk3>)
(<thunk1>)
(set! dynamic:winds (cons (cons <thunk1> <thunk3>) dynamic:winds))
@@ -49,7 +49,7 @@
(set! dynamic:winds (cdr dynamic:winds))
(<thunk3>)
ans))
-
+;@
(define call-with-current-continuation
(let ((oldcc call-with-current-continuation))
(lambda (proc)