[Chicken-hackers] [PATCH] Add missing bufpos variable for read-buffered on tcp ports

2014-10-12 Thread Evan Hanson
--- tcp.scm |1 + 1 file changed, 1 insertion(+) diff --git a/tcp.scm b/tcp.scm index ce7bb74..5389ed1 100644 --- a/tcp.scm +++ b/tcp.scm @@ -359,6 +359,7 @@ EOF (let* ((buf (make-string +input-buffer-size+)) (data (vector fd #f #f buf 0)) (buflen 0) +

Re: [Chicken-hackers] [PATCH] Minor improvements to predicated/enforcing type inference

2014-10-12 Thread Peter Bex
On Thu, Sep 25, 2014 at 07:40:51PM +1200, Evan Hanson wrote: Improves inference for #:predicate and #:enforce branches by trying a bit harder to find the smaller of the possible typesets. Thanks for this patch. It looks like a great improvement, even though I don't fully understand it in

Re: [Chicken-hackers] [PATCH] Add missing bufpos variable for read-buffered on tcp ports

2014-10-12 Thread Peter Bex
On Mon, Oct 13, 2014 at 06:16:40AM +1300, Evan Hanson wrote: --- tcp.scm |1 + 1 file changed, 1 insertion(+) diff --git a/tcp.scm b/tcp.scm index ce7bb74..5389ed1 100644 --- a/tcp.scm +++ b/tcp.scm @@ -359,6 +359,7 @@ EOF (let* ((buf (make-string +input-buffer-size+))