Re: [Chicken-users] Cairo binding: The code

2008-04-12 Thread Luke McCarthy
On Friday 11 April 2008 12:16:17 you wrote: On Wed, Apr 9, 2008 at 9:10 PM, Luke McCarthy [EMAIL PROTECTED] wrote: There wasn't much interest in my last e-mail so I'll use my discretion. The diff was bigger than the files so I've attached them as-is. Extact in the Cairo egg directory

Re: [Chicken-users] Update: Cairo binding

2008-04-06 Thread Luke McCarthy
On Monday 07 April 2008 01:49:31 you wrote: On 07/04/2008, Luke McCarthy [EMAIL PROTECTED] wrote: I've got about 99% of the API for Cairo 1.4.14 complete. Not really relevant to the content of your mail, but will this work with cairo 1.5.x? Yes, unless they've broken the API (unlikely

[Chicken-users] Limitation of Chicken's keyword arguments

2008-04-01 Thread Luke McCarthy
Keyword arguments in Chicken don't work where the keywords precede the rest list, e.g. (a href: url text). (define (a #!rest args #!key href) ...) In the call (a href: foo bar) href is bound to foo as expected but args is bound to (href: foo bar) not (bar). The behaviour makes sense from the

Re: [Chicken-users] Cairo binding

2008-03-13 Thread Luke McCarthy
cairo_reference() to increment the refcount. But for now I'll err on the conservative side. Luke McCarthy ___ Chicken-users mailing list Chicken-users@nongnu.org http://lists.nongnu.org/mailman/listinfo/chicken-users

Re: [Chicken-users] Cairo binding

2008-03-11 Thread Luke McCarthy
On Monday 10 March 2008 20:07:45 you wrote: On 3/9/08, Luke McCarthy [EMAIL PROTECTED] wrote: I am using the Cairo egg, but it's incomplete so I have been adding new procedures as I need them for my project. Is anyone working on this at the moment? I am willing on bringing it up to date

Re: [Chicken-users] Problems using meroon

2007-12-18 Thread Luke McCarthy
this error will occur if you leave the -X meroon out. On Dec 14, 2007 8:06 PM, Luke McCarthy [EMAIL PROTECTED] wrote: I have installed Meroon with chicken-setup meroon. I am using Chicken 2.6 on Linux. I have tried a simple example like this: (require-extension meroon) (define-class Point Object

[Chicken-users] Problems using meroon

2007-12-16 Thread Luke McCarthy
' used but not imported Warning: variable `Point' used but not imported Warning: variable `Object' used but not imported Warning: variable `define-class' used but not imported and obviously when it runs I get an undefined variable error since define-class was not imported. What am I doing wrong? Luke