summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/Filter
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2015-04-26 22:16:26 +0000
committerKarl Berry <karl@freefriends.org>2015-04-26 22:16:26 +0000
commit342e672574c4e67d510e46ab6acd0e21a7d0cf54 (patch)
tree79e04202d08c0404bbd780bd26c1e34710e539b6 /Master/tlpkg/tlperl/lib/Filter
parentbe2706af7c57a0ef0f4d4e9f684ca4ef74922a82 (diff)
(tl)perl 5.20.2 for windows, from siep
git-svn-id: svn://tug.org/texlive/trunk@37064 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Filter')
-rw-r--r--Master/tlpkg/tlperl/lib/Filter/Simple.pm5
-rw-r--r--Master/tlpkg/tlperl/lib/Filter/Util/Call.pm9
2 files changed, 9 insertions, 5 deletions
diff --git a/Master/tlpkg/tlperl/lib/Filter/Simple.pm b/Master/tlpkg/tlperl/lib/Filter/Simple.pm
index 5de131fec2b..4b15e556e00 100644
--- a/Master/tlpkg/tlperl/lib/Filter/Simple.pm
+++ b/Master/tlpkg/tlperl/lib/Filter/Simple.pm
@@ -4,7 +4,7 @@ use Text::Balanced ':ALL';
use vars qw{ $VERSION @EXPORT };
-$VERSION = '0.89';
+$VERSION = '0.91';
use Filter::Util::Call;
use Carp;
@@ -243,7 +243,6 @@ __END__
Filter::Simple - Simplified source filtering
-
=head1 SYNOPSIS
# in MyFilter.pm:
@@ -801,6 +800,6 @@ Damian Conway E<lt>damian@conway.orgE<gt>.
=head1 COPYRIGHT AND LICENSE
- Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.
+ Copyright (c) 2000-2014, Damian Conway. All Rights Reserved.
This module is free software. It may be used, redistributed
and/or modified under the same terms as Perl itself.
diff --git a/Master/tlpkg/tlperl/lib/Filter/Util/Call.pm b/Master/tlpkg/tlperl/lib/Filter/Util/Call.pm
index 46a7b32dfdd..fb379b019cb 100644
--- a/Master/tlpkg/tlperl/lib/Filter/Util/Call.pm
+++ b/Master/tlpkg/tlperl/lib/Filter/Util/Call.pm
@@ -18,7 +18,7 @@ use vars qw($VERSION @ISA @EXPORT) ;
@ISA = qw(Exporter DynaLoader);
@EXPORT = qw( filter_add filter_del filter_read filter_read_exact) ;
-$VERSION = "1.45" ;
+$VERSION = "1.49" ;
sub filter_read_exact($)
{
@@ -182,7 +182,7 @@ will result in the C<@_> array having the following values:
Before terminating, the C<import> function must explicitly install the
filter by calling C<filter_add>.
-B<filter_add()>
+=head2 B<filter_add()>
The function, C<filter_add>, actually installs the filter. It takes one
parameter which should be a reference. The kind of reference used will
@@ -287,6 +287,11 @@ to call filter any more.
See L<Example 4: Using filter_del> for details.
+=item I<real_import>
+
+Internal function which adds the filter, based on the L<filter_add>
+argument type.
+
=back
=head1 EXAMPLES