in reply to Re: *glob{FILEHANDLE}
in thread *glob{FILEHANDLE}

perl 5.8 Release document says The *glob{FILEHANDLE} is deprecated, use *glob{IO} instead. What changes i need to make in my script to make it work in 5.8 version.

Replies are listed 'Best First'.
Re: Re: Re: *glob{FILEHANDLE}
by broquaint (Abbot) on Jun 18, 2003 at 11:22 UTC
    What changes i need to make in my script to make it work in 5.8 version.
    If you explicitly access the FILEHANDLE glob slot then just change it to access the IO slot, otherwise you don't have to do anything. Note that this only a warning and won't actually change the operation of your code, but as with most warnings they're best heeded.
    HTH

    _________
    broquaint