in reply to Compilation error at /usr/share/perl/5.14/utf8_heavy.pl line 447

Here's line 447 of utf8_heavy.pl on my version of Perl 5.14:

$list = do $file; die $@ if $@;

I only spent a couple of minutes looking at the (disturbingly ugly) utf8_heavy.pl code, but gather that $file is supposed to be a code file of utf8 definitions of some sort. In your case, $file contains something that your version of Perl can't compile.

Did someone screw up your system Perl by attempting to manually install some upgraded components? That's what it looks like to me.


Dave

Replies are listed 'Best First'.
Re^2: Compilation error at /usr/share/perl/5.14/utf8_heavy.pl line 447
by PerlBroker (Acolyte) on Jun 28, 2013 at 08:54 UTC
    Thank you, I found what it was, the problem was that I used something like:
    $page_content{$image} = edit_string("CONTENT\n=====\n\n");
    Without my %page_content However, I wonder why I don't get normal perl errors, but have to find out myself what is wrong.