Tim Bolshaw wrote:
> This took me HOURS to track down (my perl debugging skills are not in
> the guru class!)  For the benefits of others that are seeing weird
> errors in scripts using Tk,
> 
> in Tk/Derived.pm line 94 (Tk Version 4.010)
> 
>    foreach my $key (keys %$widget)
> 
> should be
> 
>    foreach my $key (keys %$widget)

Don't see any change there ????

I think you meant :
     foreach my $key (%$widget)
for the orig version.

> This bug leads to all kinds of strange behaviour, none of it near this
> particular statement.  The amazing thing, however, is how often the code
> continues to run without any symptoms of a problem.


-- 
  ,-/-  __      _  _         $Bill Luebkert    Mailto:[EMAIL PROTECTED]
 (_/   /  )    // //       DBE Collectibles    Mailto:[EMAIL PROTECTED]
  / ) /--<  o // //      Castle of Medieval Myth & Magic http://www.todbe.com/
-/-' /___/_<_</_</_    http://dbecoll.tripod.com/ (My Perl/Lakers stuff)
_______________________________________________
ActivePerl mailing list
[email protected]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to