From a5bdc8743ef3af8e660e777587c61edcfb1dc16a Mon Sep 17 00:00:00 2001 From: sperber Date: Tue, 14 Jan 2003 13:53:24 +0000 Subject: [PATCH] Remove comments that have been integrated into the documentation. --- scheme/httpd/seval.scm | 8 -------- 1 file changed, 8 deletions(-) diff --git a/scheme/httpd/seval.scm b/scheme/httpd/seval.scm index 7cf04ee..a3ae9b0 100644 --- a/scheme/httpd/seval.scm +++ b/scheme/httpd/seval.scm @@ -9,14 +9,6 @@ ;;; This is really just an handler example demonstrating how to upload code ;;; into the server. -;;; HTML forms -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; This request handler is suitable for receiving code entered into an -;;; HTML text form. The Scheme code being uploaded is being POST'd to us -;;; (from a form). See http-forms.scm for info on the format of this kind -;;; of request. After parsing the request into the submitted string, we -;;; parse *that* into a Scheme sexp with READ, and eval it. - ;;; (do/timeout secs thunk) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Run THUNK, and gun it down if it hasn't finished in SECS seconds.