diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-10-14 21:44:08 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-10-14 22:00:15 +0100 |
commit | da4061d33235769184e98cc28663a2dd54302fa8 (patch) | |
tree | 4570cbd426a13abb0bef561ba7ed9141c616317d /ext/re | |
parent | 1d2b7ec55763d41a18a61d1b44aedd531d305ad3 (diff) | |
download | perl-da4061d33235769184e98cc28663a2dd54302fa8.tar.gz |
Convert modules in ext/ to pass minimal arguments to XSLoader::load().
Diffstat (limited to 'ext/re')
-rw-r--r-- | ext/re/re.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/re/re.pm b/ext/re/re.pm index 2d6784a6a6..90e31f3ff9 100644 --- a/ext/re/re.pm +++ b/ext/re/re.pm @@ -4,7 +4,7 @@ package re; use strict; use warnings; -our $VERSION = "0.12"; +our $VERSION = "0.13"; our @ISA = qw(Exporter); our @EXPORT_OK = ('regmust', qw(is_regexp regexp_pattern @@ -66,7 +66,7 @@ $flags{TRIE} = $flags{DUMP} | $flags{EXECUTE} | $flags{TRIEC}; if (defined &DynaLoader::boot_DynaLoader) { require XSLoader; - XSLoader::load( __PACKAGE__, $VERSION); + XSLoader::load(); } # else we're miniperl # We need to work for miniperl, because the XS toolchain uses Text::Wrap, which |