Ah, perhaps I'm very unclear on this point. I wish to do the following:
void f() { for(int x=0;;) ...; }
=>
void f() { int x; for(x=0;;) ...; }
ie, variables shouldn't become global, just moved within the function.
/ Marcus Agehall (Scanian)
Previous text:
2004-05-05 11:18: Subject: precompile.pike
In the beginning of each scope. IE, after any "{".
/ Peter Bortas (Kein Paket!)