chicken-users
[Top][All Lists]
Advanced

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

Re: [Chicken-users] Problem with Syntax Case in 2.0


From: felix winkelmann
Subject: Re: [Chicken-users] Problem with Syntax Case in 2.0
Date: Mon, 25 Jul 2005 08:39:18 +0200

On 7/21/05, Dale Jordan <address@hidden> wrote:
> I have been experimenting with the implementation of srfi-57 which uses
> syntax-case and its module system.  Under Chicken-1.89 I had added (at
> toplevel) a procedure definition to srfi-57.scm that was used in most of
> the modules.  To be precise it was the following:
> 
> (define symbolic-identifier=?
>    (lambda (x y)
>       (eq? (syntax-object->datum x)
>            (syntax-object->datum y))))
> 

This should work (at the top of srfi-57.scm):

(eval-when (compile) (load "srfi-57.scm"))

(define (symbolic-identifier=? ...) ...)

...


cheers,
felix




reply via email to

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