Starting at line 239 on Inline.pm
print_version() if $version_requested;
$o->reportbug() if $o->{CONFIG}{REPORTBUG};
if (not $o->{INLINE}{object_ready}
or $o->{CONFIG}{PRINT_INFO}
) {
eval "require $o->{INLINE}{ILSM_module}"; # line 244
croak M05_error_eval('glue', $@) if $@;
bless $o, $o->{INLINE}{ILSM_module};
$o->validate(@config);
}
Starting at line 770 on Inline.pm
my $inl = "$o->{API}{install_lib}/auto/" .
"$o->{API}{modpname}/$o->{API}{modfname}.inl";
$o->{API}{location} = "$o->{API}{install_lib}/auto/" .
"$o->{API}{modpname}/$o->{API}{modfname}.$o->{INLINE}{ILSM_suffi
+x}";
last unless -f $inl;
my %inl; # line 775
{ local ($/, *INL);
open INL, $inl or croak M31_inline_open_failed($inl);
%inl = Inline::denter->new()->undent(<INL>);
}
next unless ($o->{INLINE}{md5} eq $inl{md5});
next unless ($inl{inline_version} ge '0.40');
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.