Re: macro PIR needs

2008-04-14 Thread jerry gay
On Mon, Apr 14, 2008 at 10:21 AM, Will Coleda <[EMAIL PROTECTED]> wrote: > On Mon, Apr 14, 2008 at 12:54 PM, François Perrad > > > <[EMAIL PROTECTED]> wrote: > > > > > > Original Message ---- > > Subject: Re: macro PIR needs >

Re: macro PIR needs

2008-04-14 Thread Will Coleda
On Mon, Apr 14, 2008 at 12:54 PM, François Perrad <[EMAIL PROTECTED]> wrote: > > > Original Message > Subject: Re: macro PIR needs > Date: Mon, 14 Apr 2008 18:03:44 +0200 > From: François Perrad <[EMAIL PROTECTED]> > Reply-To: [EMAIL PR

Re: macro PIR needs

2008-04-14 Thread François Perrad
Original Message Subject: Re: macro PIR needs Date: Mon, 14 Apr 2008 18:03:44 +0200 From: François Perrad <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: jerry gay <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EM

Re: macro PIR needs

2008-04-14 Thread jerry gay
On Mon, Apr 14, 2008 at 5:03 AM, Klaas-Jan Stol <[EMAIL PROTECTED]> wrote: > IMCC's macro processor doesn't currently allow for uniquely generated > variable names. It's in the pdd (19), but not yet implemented. > > You're right in that it only works for labels. > > kjs > > > > > On Mon, Apr 14

Re: macro PIR needs

2008-04-14 Thread Klaas-Jan Stol
IMCC's macro processor doesn't currently allow for uniquely generated variable names. It's in the pdd (19), but not yet implemented. You're right in that it only works for labels. kjs On Mon, Apr 14, 2008 at 1:32 PM, François Perrad <[EMAIL PROTECTED]> wrote: > > In Lua libraries, I wrote many

macro PIR needs

2008-04-14 Thread François Perrad
In Lua libraries, I wrote many time the same piece of code. The purpose of this code is to register each function. So, I try to write the following PIR macro : .macro register(tname, fname) .const .Sub $fname = .fname $fname.'setfenv'(_lua__GLOBAL) set