On Wed, Jan 7, 2009 at 3:26 AM, Heinrich Taube <[email protected]> wrote:
> im using chicken 3.0.0 . I  have a file with some define-macro in it like
> this:
>
> (define-macro (send place . args)
>  (expand-send place args))
>
> I include that file in my main file ChickenBridge.scm
>
> (include "mymacros.scm")
> (declare
> (unit cm)
> (run-time-macros)
> (uses extras )
> (usual-integrations)
> (export
> ... send
> ))
>
>

It might be that you have to put the include file after the
declaration (or add "(declare (run-time-macros))" at the top
of your include file).


cheers,
felix


_______________________________________________
Chicken-users mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/chicken-users

Reply via email to