Email list hosting service & mailing list manager

a bug in srfi-43 Zhu Chongkai (24 Feb 2005 07:22 UTC)
Re: a bug in srfi-43 Taylor Campbell (27 Feb 2005 15:14 UTC)
Re: a bug in srfi-43 David Van Horn (27 Feb 2005 18:19 UTC)

Re: a bug in srfi-43 David Van Horn 27 Feb 2005 18:06 UTC

Taylor Campbell wrote:
> On Thu, 24 Feb 2005, Zhu Chongkai wrote:
>>In Section 4.4. Iteration, the final example of
>>vector-fold:
>>
>>Count the number of even numbers in vec.
>>(vector-fold (lambda (index n counter)
>>                 (if (even? n) (+ counter 1) counter))
>>               0 vec)
>>
>>but shouldn't it be
>>
>>(vector-fold (lambda (index counter n)
>
> Yes, that is correct.  I'm not sure of the correct protocol to fix
> things post-finalization, so I'll just cc this to the editors and hope
> that they fix SRFI 43...

These sorts of typographical errors can be fixed after finalization.  I went
ahead and updated the document.  Thanks for the notice.

David