in reply to Re^2: XML::Twig output to filehandle
in thread XML::Twig output to filehandle

If you are talking about $_ in the handler, it _is_ localized (and set) by XML::Twig, so no worries there.

Replies are listed 'Best First'.
Re^4: XML::Twig output to filehandle
by Anonymous Monk on Feb 13, 2009 at 09:03 UTC
    I think its $/ from
    undef $/; my $XML = <DATA>;

      Oh yeah, I missed that one. It's obviously only there for the code example though. I hope the OP doesn't store the real data in the DATA section of the code!