chicken-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Chicken-users] UTF8


From: Jean-Philippe Theberge
Subject: Re: [Chicken-users] UTF8
Date: Mon, 10 Mar 2008 12:04:30 -0400
User-agent: Mozilla-Thunderbird 2.0.0.9 (X11/20080109)

Mario Domenech Goulart wrote:
Hi,

On Mon, 10 Mar 2008 11:16:08 -0400 Jean-Philippe Theberge <address@hidden> 
wrote:

Am I doing something wrong here?

(require-extension utf8)
(module BuddyPilots ()
    (import utf8)
    ...
)

Error: unbound variable: utf8

I guess you need (require-extension syntax-case) too.


Yes, that did it!

But now I have a new problem...

Error: unbound variable: match

If I do not import utf8 Idont have this error

The call to 'match' is in the sql egg


(define (sql:transform x)
 (define (infix op items)
   (list #\( (intersperse items op) #\)))
 (match x
   (('and)
    'TRUE)
   (('and items ...)
    (infix " AND " (map sql:transform items)))
   ....

Where is match defined?

Best wishes,
Mario




--
BuddyPilots <http://www.buddypilots.com>
*Jean-Philippe Théberge*
*Programmeur Architecte*
Tel: (514) 353-2307







reply via email to

[Prev in Thread] Current Thread [Next in Thread]