Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Pod-Simple CPAN distribution.

Report information
The Basics
Id: 4064
Status: resolved
Priority: 0/
Queue: Pod-Simple

People
Owner: Nobody in particular
Requestors: spoon [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: 2.04



Date: Sat, 11 Oct 2003 00:08:43 +1000
From: Iain Truskett <spoon [...] cpan.org>
To: bug-pod-simple [...] rt.cpan.org
Subject: undef $/
Due to a typing error, I uncovered a bug in Pod::Simple. It appears to assume that $/ is set to its default value. If you undef $/, Pod::Simple has great trouble parsing. You may want to ensure $/ has a 'good value' and set one (using local of course) if not. Just spent 10 minutes trying to find out why Pod::Simple was giving me garbage. Turned out my slurp with C<< do { undef $/; <DATA> } >> had been written as that rather than with C<< local $/ >>. +1 in that it helped me find my bug. -1 in that it doesn't just cope gracefully. cheers, -- Iain. <http://eh.org/~koschei/>
Date: Sun, 12 Oct 2003 15:07:30 -0800
From: "Sean M. Burke" <sburke [...] cpan.org>
Subject: Re: [cpan #4064] undef $/
To: bug-Pod-Simple [...] rt.cpan.org, AdminCc of cpan Ticket #4064: ;
RT-Send-Cc:
Show quoted text
>Due to a typing error, I uncovered a bug in Pod::Simple. It appears to >assume that $/ is set to its default value. If you undef $/, Pod::Simple >has great trouble parsing.
Can you try this with the new Pod::Simple version (as of a day or two ago)? -- Sean M. Burke http://search.cpan.org/~sburke/
[SBURKE - Sun Oct 12 19:08:25 2003]: Show quoted text
> > Due to a typing error, I uncovered a bug in Pod::Simple. > > It appears to assume that $/ is set to its default value. > > If you undef $/, Pod::Simple has great trouble parsing.
> > Can you try this with the new Pod::Simple version (as of a > day or two ago)?
Seems to work well (I was waiting for my nearest mirror to update). Good work! cheers, -- Iain.