> While being my crazy old self, and writing strtok() in Perl > for the hell > of it, I came across this unhappiness in Deparse: > > { > my $foo = 10; > sub bar { print $foo } > } > > deparses to: > > sub bar { > print $foo; > } > { > my $foo = 10; > } > > This is most undesir[e]able. Why? I am happy to see to what code it deparses. Good luck, VadimThread Next