Re: :init Where should we put the flag?

2006-11-06 Thread Leopold Toetsch
Am Montag, 30. Oktober 2006 22:58 schrieb Kevin Tew: Using either of those flags ( PObj_private0_FLAG or  PObj_private2_FLAG ) break other tests. I'm up for more suggestions. Sorry for the very delayed answer. Reusing these compile-time flags isn't really safe obviously, as running the code

Re: :init Where should we put the flag?

2006-10-30 Thread Kevin Tew
Using either of those flags ( PObj_private0_FLAG or PObj_private2_FLAG ) break other tests. I'm up for more suggestions. Kevin Leopold Toetsch wrote: Am Sonntag, 29. Oktober 2006 21:25 schrieb Kevin Tew: I've had :init implemented for a couple of weeks now, but I can't check it in

:init Where should we put the flag?

2006-10-29 Thread Kevin Tew
I've had :init implemented for a couple of weeks now, but I can't check it in because it needs its own flag. Currently I'm using PObj_private7_FLAG to indicate a :init sub, but I stole PObj_private7_FLAG from SUB_FLAG_PF_POSTCOMP. Leo suggested using PObj_private2_FLAG, but when I did tons of

Re: :init Where should we put the flag?

2006-10-29 Thread Jonathan Worthington
Kevin Tew wrote: I've had :init implemented for a couple of weeks now, but I can't check it in because it needs its own flag. snip SUB_FLAG_GENERATOR= PObj_private3_FLAG, /* unused old python pmcs */ Have you tried this one? It's labeled unused, and I find no references to it at all

Re: :init Where should we put the flag?

2006-10-29 Thread Leopold Toetsch
Am Sonntag, 29. Oktober 2006 21:25 schrieb Kevin Tew: I've had :init implemented for a couple of weeks now, but I can't check it in because it needs its own flag. I think I've answered that already. Again:     SUB_FLAG_CORO_FF      = PObj_private0_FLAG,     SUB_FLAG_C_HANDLER    =

Re: :init Where should we put the flag?

2006-10-29 Thread Kevin Tew
Using either of those flags ( PObj_private0_FLAG or PObj_private2_FLAG ) break other tests. I'm up for more suggestions. Kevin Leopold Toetsch wrote: Am Sonntag, 29. Oktober 2006 21:25 schrieb Kevin Tew: I've had :init implemented for a couple of weeks now, but I can't check it in