Thus it was written in the epistle of Jonathan Scott Duff,
> 
> Someone proposed (I think I deleted that email) to make 
> 
>       while (<FH>) { ...  }
> 
> work like 
> 
>       while (<FH>) { chomp; ... }

I'm not sure if I'm the someone you meant, but if so, the proposal was to make

        while (chomp(<FH>)) { ... }

work like

        while (<FH>) { chomp; ... }

Ted
-- 
Ted Ashton ([EMAIL PROTECTED]), Info Sys, Southern Adventist University
          ==========================================================           
Most of the fundamental ideas of science are essentially simple, and may, as
a rule, be expressed in a language comprehensible to everyone.
                                        -- Einstein, Albert (1879-1955)
          ==========================================================           
         Deep thoughts to be found at http://www.southern.edu/~ashted

Reply via email to