X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Plugin.pm;h=cc6d6e7ace52dcee56f17c302375bdce8621019e;hb=c8e0ea7d370e0a09da57acc6ffb139e2d9f010ac;hp=bf739f989f5e9fda90aa79841658dffaa6cefc37;hpb=e20ad0b3c8306a73e1a0e0a1c5f88d6e84e3583e;p=perl%2Fmodules%2Fre-engine-Plugin.git diff --git a/Plugin.pm b/Plugin.pm index bf739f9..cc6d6e7 100644 --- a/Plugin.pm +++ b/Plugin.pm @@ -6,7 +6,7 @@ use strict; our ($VERSION, @ISA); BEGIN { - $VERSION = '0.08'; + $VERSION = '0.11'; # All engines should subclass the core Regexp package @ISA = 'Regexp'; require XSLoader; @@ -20,7 +20,7 @@ sub import my ($pkg, %sub) = @_; # Valid callbacks - my @callback = qw; + my @callback = qw; for (@callback) { next unless exists $sub{$_}; @@ -55,7 +55,7 @@ sub callbacks { my ($re, %callback) = @_; - my %map = map { $_ => "_$_" } qw; + my %map = map { $_ => "_$_" } qw; for my $key (keys %callback) { my $name = $map{$key};