[Chicken-users] keyword args not assigned in program.

2010-11-20 Thread Alan Post
I'm dealing with a frustrating bug--I haven't been able to turn it into a simple test case. Will you let me explain what is going on, why I haven't been able to make a test case, and then offer advice? I have a compiler to convert a PEG grammar to scheme. In my test suite, I have a line: <++> t

Re: [Chicken-users] keyword args not assigned in program.

2010-11-20 Thread Alex Shinn
On Sat, Nov 20, 2010 at 5:59 AM, Alan Post wrote: > > It appears that directly evaluating the result of the compiler causes > #!key arguments not to be assigned, but if I save that same result > and read it back in, things work fine. Seeing the compiler would help, but I'll take a stab and guess

Re: [Chicken-users] sequences egg

2010-11-20 Thread Felix
From: John Cowan Subject: Re: [Chicken-users] sequences egg Date: Fri, 19 Nov 2010 13:40:33 -0500 > Felix scripsit: > >> Comments, suggestions, rants or critique is welcome. > > I don't see much point in the constructors, really. Schemers already > understand how to make lists and vectors. So

Re: [Chicken-users] handling the undefined value

2010-11-20 Thread Felix
From: Jörg "F. Wittenberger" Subject: Re: [Chicken-users] handling the undefined value Date: Fri, 19 Nov 2010 22:31:29 +0100 > Am Freitag, den 19.11.2010, 02:56 -0500 schrieb Felix: >> From: Jörg "F. Wittenberger" >> Subject: Re: [Chicken-users] handling the undefined value >> Date: Thu, 18 Nov

Re: [Chicken-users] keyword args not assigned in program.

2010-11-20 Thread Felix
From: Alan Post Subject: [Chicken-users] keyword args not assigned in program. Date: Sat, 20 Nov 2010 06:59:38 -0700 > I'm dealing with a frustrating bug--I haven't been able to turn it > into a simple test case. Will you let me explain what is going on, > why I haven't been able to make a test

Re: [Chicken-users] Problem with threads

2010-11-20 Thread Felix
From: Jeronimo Pellegrini Subject: [Chicken-users] Problem with threads Date: Fri, 19 Nov 2010 15:10:28 -0200 > > (use srfi-18) > > (define looping-thread > (let ((loop (lambda () (do ((i 0 (add1 i))) > (#f) > (print ':: i) > (thread-start

Re: [Chicken-users] sequences egg

2010-11-20 Thread John Cowan
Felix scripsit: > > I don't see much point in the constructors, really. Schemers already > > understand how to make lists and vectors. > > Sorry, I don't understand this remark. Ah. I just assumed that random access sequences and linear access sequences were vectors and lists respectively, but

[Chicken-users] Re: sequences egg

2010-11-20 Thread Hans Nowak
On 11/18/10 10:03 AM, Felix wrote: > I've put together a little library of generic "sequence" operations, > and would like to get some feedback, since I'm not sure about the > nomenclature and API. Find it here: > >http://wiki.call-cc.org/eggref/4/sequences > > And in the repo, usual place. It

Re: [Chicken-users] keyword args not assigned in program.

2010-11-20 Thread Alan Post
On Sat, Nov 20, 2010 at 06:37:59AM -0800, Alex Shinn wrote: > On Sat, Nov 20, 2010 at 5:59 AM, Alan Post > wrote: > > > > It appears that directly evaluating the result of the compiler causes > > #!key arguments not to be assigned, but if I save that same result > > and read it back in, things wo

Re: [Chicken-users] keyword args not assigned in program.

2010-11-20 Thread Alan Post
On Sat, Nov 20, 2010 at 04:00:26PM +0100, Felix wrote: > From: Alan Post > Subject: [Chicken-users] keyword args not assigned in program. > Date: Sat, 20 Nov 2010 06:59:38 -0700 > > > I'm dealing with a frustrating bug--I haven't been able to turn it > > into a simple test case. Will you let me