Re: [svn:parrot] r20562 - trunk/src/pmc

2007-08-08 Thread jerry gay
On 8/8/07, Andy Lester <[EMAIL PROTECTED]> wrote: > > On Aug 8, 2007, at 10:58 AM, [EMAIL PROTECTED] wrote: > > > -INTVAL get_integer_keyed(PMC* key) { > > +INTVAL get_integer_keyed(PMC *key) { > > As you go through these, please check to see if you can NOTNULL or > NULLOK the parms that yo

Re: [svn:parrot] r20562 - trunk/src/pmc

2007-08-08 Thread Andy Lester
On Aug 8, 2007, at 10:58 AM, [EMAIL PROTECTED] wrote: -static PMC* undef(Interp* interp) +static PMC *undef(Interp *interp) And this should get changed to static PMC *undef(PARROT_INTERP) xoxo, Andy -- Andy Lester => [EMAIL PROTECTED] => www.petdance.com => AIM:petdance

Re: [svn:parrot] r20562 - trunk/src/pmc

2007-08-08 Thread Andy Lester
On Aug 8, 2007, at 10:58 AM, [EMAIL PROTECTED] wrote: -INTVAL get_integer_keyed(PMC* key) { +INTVAL get_integer_keyed(PMC *key) { As you go through these, please check to see if you can NOTNULL or NULLOK the parms that you're changing. For example this one: -PMC* get_pmc_keye