In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/e06f856f7209ef9f86a20d46b2c039a3c7852762?hp=43f930483e46341a5bed39def194c95eb1d468b4>
- Log ----------------------------------------------------------------- commit e06f856f7209ef9f86a20d46b2c039a3c7852762 Author: Father Chrysostomos <[email protected]> Date: Fri Jul 5 08:13:39 2013 -0700 Add Olivier Mengué to AUTHORS M AUTHORS commit 7427d8a6bb9757295ffc27a51e8f4686f7073f14 Author: Father Chrysostomos <[email protected]> Date: Fri Jul 5 08:12:47 2013 -0700 Increase $subs::VERSION to 1.02 M lib/subs.pm commit f2b2ac32e8211ec04ea952884af07651abe148c8 Author: Olivier Mengué <[email protected]> Date: Sat Apr 13 11:48:40 2013 +0200 subs.pm: fix variable leak into global scope M lib/subs.pm ----------------------------------------------------------------------- Summary of changes: AUTHORS | 1 + lib/subs.pm | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 01b6e1d..d80759b 100644 --- a/AUTHORS +++ b/AUTHORS @@ -857,6 +857,7 @@ Oleg Nesterov <[email protected]> Olivier Blin <[email protected]> Olli Savia Ollivier Robert <[email protected]> +Olivier Mengué <[email protected]> Olivier Thauvin <[email protected]> Osvaldo Villalon <[email protected]> Owen Taylor <[email protected]> diff --git a/lib/subs.pm b/lib/subs.pm index 06c55e1..10d6e02 100644 --- a/lib/subs.pm +++ b/lib/subs.pm @@ -1,6 +1,6 @@ package subs; -our $VERSION = '1.01'; +our $VERSION = '1.02'; =head1 NAME @@ -32,7 +32,7 @@ sub import { my $callpack = caller; my $pack = shift; my @imports = @_; - foreach $sym (@imports) { + foreach my $sym (@imports) { *{"${callpack}::$sym"} = \&{"${callpack}::$sym"}; } }; -- Perl5 Master Repository
