Re: [Chicken-users] import, the utf8 egg, syntax-case and tinyclos

2006-03-24 Thread felix winkelmann
On 3/23/06, Sunnan [EMAIL PROTECTED] wrote: I still get: Error: unbound variable: clean Call history: ##sys#require ##sys#require make-method add-method -- clean is a method I have defined differentlly for numbers,

Re: [Chicken-users] import, the utf8 egg, syntax-case and tinyclos

2006-03-23 Thread Alex Shinn
At Thu, 23 Mar 2006 08:55:14 +0100, Sunnan wrote: I want to use the ut8 egg, but when I do it complains that it doesn't know what import is. Adding (require-extension syntax-case) gets rid of that complaint but then instead it complains about my tinyclos methods: This is my preamble:

Re: [Chicken-users] import, the utf8 egg, syntax-case and tinyclos

2006-03-23 Thread Sunnan
At Thu, 23 Mar 2006 02:12:47 -0600, Alex Shinn wrote: I'm not exactly sure what (uses) does, but I don't think you want this line. If you want these features you should just use That's how we always did it when we were kids! I wasn't sure how chicken had changed. But I changed it as per your

[Chicken-users] import, the utf8 egg, syntax-case and tinyclos

2006-03-22 Thread Sunnan
I want to use the ut8 egg, but when I do it complains that it doesn't know what import is. Adding (require-extension syntax-case) gets rid of that complaint but then instead it complains about my tinyclos methods: This is my preamble: (require-extension syntax-case) (require-extension tinyclos)