NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
What to do next (Score:1)
Well, that's a heck of a tricky failure.
As the culprit (as it were), I would suggest the following:
And so on.
Use the pod2html preview [cpan.org] to see how it l
Re: (Score:2)
perldoc.These are the different values:
=over 4
=item * 0
Game is over
=item * 1
full card (the default)
Renders to:
These are the different values:
o Game is over
o 1
Re:What to do next (Score:1)
Looks like someone is testing the string following the bullet with something like
if ( $headline )as opposed toif ( defined $headline and length $headline ). Check what happens if you say=item * Z<>0.(In 5.12, the need for the
definedwill go away becauselength undefwill silently return undef rather than warning and returning 0.)But I agree with David that you should not put a bullet and headline on the
=itemline.Reply to This
Parent