minor change in comment layout.

This commit is contained in:
interp 2003-07-04 16:18:19 +00:00
parent d5b14d4ffc
commit 592baf7c6a
1 changed files with 5 additions and 3 deletions

View File

@ -3,9 +3,11 @@
;; With callbacks you can create special links that are associated
;; with a function. If the user clicks on the special callback link,
;; the send-html/suspend won't return, but the function will be called
;; instead. Note: It is not sensible to create callbacks on top level,
;; as they contain continuations. You have to create a new callback
;; every time you want to use it (inside a function).
;; instead.
;; NOTE: It is not sensible to create callbacks on top level, as they
;; contain continuations. You have to create a new callback every time
;; you want to use it (inside a function).
(define (make-callback function)
(call-with-current-continuation
(lambda (exit)