diff --git a/collects/web-server/prototype-web-server/abort-resume.ss b/collects/web-server/prototype-web-server/abort-resume.ss index f228600172..cbc5396a08 100644 --- a/collects/web-server/prototype-web-server/abort-resume.ss +++ b/collects/web-server/prototype-web-server/abort-resume.ss @@ -150,7 +150,9 @@ ;; dispatch-start: request -> reponse ;; pass the initial request to the starting interaction point (define (dispatch-start req0) - (abort/cc (lambda () (start-continuation req0)))) + (abort/cc + (lambda () + (start-continuation req0)))) ;; dispatch: request -> response ;; lookup the continuation for this request and invoke it