On Fri, Nov 12, 2004 at 12:29:20PM +0000, Nicolas FRAN??OIS wrote:
- do_paragraph($self,$paragraph,$wrapped_mode);
- $paragraph="";
+ if ($paragraph) {
+ do_paragraph($self,$paragraph,$wrapped_mode);
+ $paragraph="";
+ }
If a paragraph consists in the string "0", it will return false. Prefer
testing the length() of the string.
It used to bring issues in Pod.pm, for example.
Thanks for your time,
Mt.