Skip to content

Commit c65514c

Browse files
cpan/Filter-Util-Call - Update to version 1.65
1 parent bc675a2 commit c65514c

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

MANIFEST

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,9 +1154,9 @@ cpan/Filter-Util-Call/Call.pm Filter::Util::Call extension module
11541154
cpan/Filter-Util-Call/Call.xs Filter::Util::Call extension external subroutines
11551155
cpan/Filter-Util-Call/filter-util.pl See if Filter::Util::Call works
11561156
cpan/Filter-Util-Call/t/call.t See if Filter::Util::Call works
1157-
cpan/Filter-Util-Call/t/rt_101033.pm
1158-
cpan/Filter-Util-Call/t/rt_101033.t
1159-
cpan/Filter-Util-Call/t/rt_54452-rebless.t
1157+
cpan/Filter-Util-Call/t/rt_101033.pm Module related to Filter::Util::Call
1158+
cpan/Filter-Util-Call/t/rt_101033.t Test file related to Filter::Util::Call
1159+
cpan/Filter-Util-Call/t/rt_54452-rebless.t Test file related to Filter::Util::Call
11601160
cpan/Getopt-Long/lib/Getopt/Long.pm Fetch command options (GetOptions)
11611161
cpan/Getopt-Long/lib/Getopt/Long/Parser.pm Getopt-Long
11621162
cpan/Getopt-Long/t/gol-basic.t See if Getopt::Long works

Porting/Maintainers.pl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,8 @@ package Maintainers;
570570
},
571571

572572
'Filter::Util::Call' => {
573-
'DISTRIBUTION' => 'RURBAN/Filter-1.64.tar.gz',
573+
'DISTRIBUTION' => 'RURBAN/Filter-1.65.tar.gz',
574+
'SYNCINFO' => 'tib on Mon Sep 22 08:36:59 2025',
574575
'FILES' => q[cpan/Filter-Util-Call
575576
pod/perlfilter.pod
576577
],

cpan/Filter-Util-Call/Call.pm

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ use warnings;
1818

1919
our @ISA = qw(Exporter);
2020
our @EXPORT = qw( filter_add filter_del filter_read filter_read_exact) ;
21-
our $VERSION = "1.64" ;
21+
our $VERSION = "1.65" ;
2222
our $XS_VERSION = $VERSION;
2323
$VERSION = eval $VERSION;
2424

@@ -289,16 +289,16 @@ The function, C<filter_del>, is used to disable the current filter. It
289289
does not affect the running of the filter. All it does is tell Perl not
290290
to call filter any more.
291291
292-
See L<Example 4: Using filter_del> for details.
292+
See L</Example 4: Using filter_del> for details.
293293
294294
=item I<real_import>
295295
296-
Internal function which adds the filter, based on the L<filter_add>
296+
Internal function which adds the filter, based on the L</filter_add()>
297297
argument type.
298298
299299
=item I<unimport()>
300300
301-
May be used to disable a filter, but is rarely needed. See L<filter_del>.
301+
May be used to disable a filter, but is rarely needed. See L</filter_del>.
302302
303303
=back
304304
@@ -313,7 +313,7 @@ filtering code in a textual line-level only.
313313
314314
The content from the __DATA__ block is not filtered.
315315
This is a serious limitation, e.g. for the L<Switch> module.
316-
See L<http://search.cpan.org/perldoc?Switch#LIMITATIONS> for more.
316+
See L<Switch/LIMITATIONS> for more.
317317
318318
=item Max. codesize limited to 32-bit
319319

cpan/Filter-Util-Call/Call.xs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Author : Reini Urban
55
* Date : Di 16. Aug 7:59:10 CEST 2022
6-
* Version : 1.64
6+
* Version : 1.65
77
*
88
* Copyright (c) 1995-2011 Paul Marquess. All rights reserved.
99
* Copyright (c) 2011-2014, 2018 Reini Urban. All rights reserved.

0 commit comments

Comments
 (0)