| From: Danny Yoo (dyoo at hkn.eecs.berkeley.edu) Date: Sat Nov 11 01:00:03 EST 2006 |
|
On Sat, 11 Nov 2006, Jay McCarthy wrote:
> Committed.
>
> Yes, the docs are changed too.
Gah! I screwed up at the very end of the function. Please fix:
+ (let ([raw-bytes (apply bytes-append (read-to-eof in))])
+ (parse-bindings raw-bytes))])])]
to:
(let ([raw-bytes (apply bytes-append (read-to-eof in))])
(values (parse-bindings raw-bytes) raw-bytes))])])]
Sorry about that!
| Posted on the users mailing list. |
|