This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
lib/Perldoc.pm patch for Cygwin Bleadperl
[perl5.git] / lib / if.pm
index 32c4fad..6574d97 100644 (file)
--- a/lib/if.pm
+++ b/lib/if.pm
@@ -1,13 +1,17 @@
 package if;
 
-our $VERSION = '0.01';
+our $VERSION = '0.03';
 
 sub work {
   my $method = shift() ? 'import' : 'unimport';
   return unless shift;         # CONDITION
-  my $p = shift;               # PACKAGE
-  eval "require $p" or die;    # Adds .pm etc if needed
-  $p->$method(@_) if $p->can($method);
+
+  my $p = $_[0];               # PACKAGE
+  (my $file = "$p.pm") =~ s!::!/!g;
+  require $file or die;
+
+  my $m = $p->can($method);
+  goto &$m if $m;
 }
 
 sub import   { shift; unshift @_, 1; goto &work }