On Wed, Oct 03, 2001 at 01:18:04PM -0700, Brent Dax wrote:
>       foreach(grep {/pattern/} keys %Config) {
>               blah blah blah
> 
> with:
> 
>       while($_=each %Config) {
>               next unless /pattern/;
>               blah blah blah

Better, but it doesn't appear to ever *end*. :(

Moreover:
    print scalar keys %Config
doesn't end either. Nor does %foo = %config;

Oh dear.

-- 
Britain has football hooligans, Germany has neo-Nazis, and France has farmers. 
-The Times

Reply via email to