Skip Menu |

This queue is for tickets about the PodParser CPAN distribution.

Report information
The Basics
Id: 6329
Status: resolved
Priority: 0/
Queue: PodParser

People
Owner: Nobody in particular
Requestors: brucer [...] veriwave.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.16
Fixed in: (no value)



Subject: =head1 SYNOPSIS<carriage return> not parsed (?)
carriage return at end of SYNOPSIS line mucks it up This is perl, v5.8.1 built for i586-linux-thread-multi Show quoted text
cpan> install Pod::Usage
Pod::Usage is up to date. Linux ion171 2.4.21-215-smp4G #1 SMP Tue Apr 27 00:56:55 UTC 2004 i686 i686 i386 GNU/Linux ------------- #!/usr/bin/perl -w use strict; use warnings; use Pod::Usage; =head1 SYNOPSIS test =cut pod2usage(); --------------
#!/usr/bin/perl -w use strict; use warnings; use Pod::Usage; =head1 SYNOPSIS test =cut pod2usage();
[guest - Mon May 17 13:11:50 2004]: Show quoted text
> carriage return at end of SYNOPSIS line mucks it up > This is perl, v5.8.1 built for i586-linux-thread-multi
> cpan> install Pod::Usage
> Pod::Usage is up to date. > Linux ion171 2.4.21-215-smp4G #1 SMP Tue Apr 27 00:56:55 UTC 2004 i686 > i686 i386 GNU/Linux > ------------- > #!/usr/bin/perl -w > use strict; > use warnings; > use Pod::Usage; > > =head1 SYNOPSIS > > test > > =cut > > pod2usage(); > --------------
pod2usage() looks for Pod after __END__. So the following works... #!/usr/bin/perl -w use strict; use warnings; use Pod::Usage; pod2usage(); __END__ =head1 SYNOPSIS test
Thanks, will be fixed in Pod-Parser-1.31 -Marek