in reply to Re: Using the syntax checking feature in vim perlsupport plugin
in thread Using the syntax checking feature in vim perlsupport plugin
So the warning that WWW::Mechanize is giving is from this subroutine here:
sub _is_tainted { no warnings qw(void uninitialized); return !eval { join('', shift), kill 0; 1 }; } # _is_tainted
The code says to ignore the void warnings so I'm not sure why perlsupport is complaining about it. Any fix?
$PM = "Perl Monk's";
$MCF = "Most Clueless Friar Abbot Bishop Pontiff Deacon Curate";
$nysus = $PM . ' ' . $MCF;
Click here if you love Perl Monks
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Using the syntax checking feature in vim perlsupport plugin
by hippo (Archbishop) on Apr 15, 2016 at 15:51 UTC | |
by nysus (Parson) on Apr 15, 2016 at 16:30 UTC | |
by nysus (Parson) on Apr 15, 2016 at 17:12 UTC |