Remove comments that have moved to the documentation.
This commit is contained in:
parent
bf0d37476a
commit
9ca0a42a40
|
@ -32,13 +32,6 @@
|
|||
;;;
|
||||
;;; In either case, the data is "form-url encoded" (as described above).
|
||||
|
||||
;;; Form-query parsing
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
;;; Parse "foo=x&bar=y" into (("foo" . "x") ("bar" . "y"))
|
||||
;;; Substrings are plus-decoded and then URI-decoded. This implementation is
|
||||
;;; slightly sleazy as it will successfully parse a string like "a&b=c&d=f"
|
||||
;;; into (("a&b" . "c") ("d" . "f")) without a complaint.
|
||||
|
||||
(define (parse-html-form-query q)
|
||||
(let ((qlen (string-length q)))
|
||||
(let recur ((i 0))
|
||||
|
|
Loading…
Reference in New Issue