Subject: | $_ is not localized |
sorry that i have only a test with HTML::Template::JIT.
the bug seems to happen in check_config_file() and check_module().
it happens when i call:
use Inline C => Config => OPTIMIZE => "-O3", DIRECTORY => "/tmp/jit/455ce047453cd06516bb707b7c22f6d4" ;
I posted this as a bug to HTML::Template::JIT (see http://rt.cpan.org/NoAuth/Bug.html?id=16800):
This is perl, v5.8.6 built for i686-linux
Linux lux 2.6.4-52-default #1 Wed Apr 7 02:08:30 UTC 2004 i686 athlon i386 GNU/Linux
after creating a template, $_ is set to a new value:
$ perl -wle'
use HTML::Template::JIT;
my $t = HTML::Template::JIT->new(
filename => "examples/test.htc",
jit_path=>"/tmp/jit",
);
$t->param({foo => 23});
print $_;
$t->output;
print $_;
'
version : 5.8.6
version : 5.8.6