Skip to content

Commit

Permalink
Update perlfaq to CPAN version 5.20210520
Browse files Browse the repository at this point in the history
  [DELTA]

5.20210520  2021-05-20 04:16:03Z
  * faq5: remove suggestion to use read() for slurping (PR#96, Dan Book)
  • Loading branch information
karenetheridge committed May 21, 2021
1 parent 2e889b1 commit 7a91ac2
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Porting/Maintainers.pl
Expand Up @@ -896,7 +896,7 @@ package Maintainers;
},

'perlfaq' => {
'DISTRIBUTION' => 'ETHER/perlfaq-5.20210411.tar.gz',
'DISTRIBUTION' => 'ETHER/perlfaq-5.20210520.tar.gz',
'FILES' => q[cpan/perlfaq],
'EXCLUDED' => [ qr/^inc/, qr/^xt/, qr{^t/00-} ],
},
Expand Down
2 changes: 1 addition & 1 deletion cpan/perlfaq/lib/perlfaq.pm
Expand Up @@ -2,6 +2,6 @@ use strict;
use warnings;
package perlfaq;

our $VERSION = '5.20210411';
our $VERSION = '5.20210520';

1;
2 changes: 1 addition & 1 deletion cpan/perlfaq/lib/perlfaq.pod
Expand Up @@ -4,7 +4,7 @@ perlfaq - Frequently asked questions about Perl

=head1 VERSION

version 5.20210411
version 5.20210520

=head1 DESCRIPTION

Expand Down
2 changes: 1 addition & 1 deletion cpan/perlfaq/lib/perlfaq1.pod
Expand Up @@ -4,7 +4,7 @@ perlfaq1 - General Questions About Perl

=head1 VERSION

version 5.20210411
version 5.20210520

=head1 DESCRIPTION

Expand Down
2 changes: 1 addition & 1 deletion cpan/perlfaq/lib/perlfaq2.pod
Expand Up @@ -4,7 +4,7 @@ perlfaq2 - Obtaining and Learning about Perl

=head1 VERSION

version 5.20210411
version 5.20210520

=head1 DESCRIPTION

Expand Down
2 changes: 1 addition & 1 deletion cpan/perlfaq/lib/perlfaq3.pod
Expand Up @@ -4,7 +4,7 @@ perlfaq3 - Programming Tools

=head1 VERSION

version 5.20210411
version 5.20210520

=head1 DESCRIPTION

Expand Down
2 changes: 1 addition & 1 deletion cpan/perlfaq/lib/perlfaq4.pod
Expand Up @@ -4,7 +4,7 @@ perlfaq4 - Data Manipulation

=head1 VERSION

version 5.20210411
version 5.20210520

=head1 DESCRIPTION

Expand Down
9 changes: 1 addition & 8 deletions cpan/perlfaq/lib/perlfaq5.pod
Expand Up @@ -4,7 +4,7 @@ perlfaq5 - Files and Formats

=head1 VERSION

version 5.20210411
version 5.20210520

=head1 DESCRIPTION

Expand Down Expand Up @@ -1165,13 +1165,6 @@ You can also use a localized C<@ARGV> to eliminate the C<open>:

my $var = do { local( @ARGV, $/ ) = $file; <> };

For ordinary files you can also use the C<read> function.

read( $fh, $var, -s $fh );

That third argument tests the byte size of the data on the C<$fh> filehandle
and reads that many bytes into the buffer C<$var>.

=head2 How can I read in a file by paragraphs?
X<file, reading by paragraphs>

Expand Down
2 changes: 1 addition & 1 deletion cpan/perlfaq/lib/perlfaq6.pod
Expand Up @@ -4,7 +4,7 @@ perlfaq6 - Regular Expressions

=head1 VERSION

version 5.20210411
version 5.20210520

=head1 DESCRIPTION

Expand Down
2 changes: 1 addition & 1 deletion cpan/perlfaq/lib/perlfaq7.pod
Expand Up @@ -4,7 +4,7 @@ perlfaq7 - General Perl Language Issues

=head1 VERSION

version 5.20210411
version 5.20210520

=head1 DESCRIPTION

Expand Down
2 changes: 1 addition & 1 deletion cpan/perlfaq/lib/perlfaq8.pod
Expand Up @@ -4,7 +4,7 @@ perlfaq8 - System Interaction

=head1 VERSION

version 5.20210411
version 5.20210520

=head1 DESCRIPTION

Expand Down
2 changes: 1 addition & 1 deletion cpan/perlfaq/lib/perlfaq9.pod
Expand Up @@ -4,7 +4,7 @@ perlfaq9 - Web, Email and Networking

=head1 VERSION

version 5.20210411
version 5.20210520

=head1 DESCRIPTION

Expand Down
2 changes: 1 addition & 1 deletion cpan/perlfaq/lib/perlglossary.pod
Expand Up @@ -7,7 +7,7 @@ perlglossary - Perl Glossary

=head1 VERSION

version 5.20210411
version 5.20210520

=head1 DESCRIPTION

Expand Down

0 comments on commit 7a91ac2

Please sign in to comment.