diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-04-26 00:57:26 +0000 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-04-26 00:57:26 +0000 |
commit | 3dc8e7ab4fe68f9ea771413bb082b0667954806f (patch) | |
tree | 11de6aba6ebf5c5b185cc5631fa1ed2960b73492 /lib | |
parent | 451b636e23e7a85e8c02883768861b52bb058908 (diff) | |
download | perl-3dc8e7ab4fe68f9ea771413bb082b0667954806f.tar.gz |
perl 5.003_03: lib/Symbol.pm
Put back in the BEGIN { require 5.002; }. The version in
5.003_02 wouldn't work in 5.002 anyway. Further, the whole
point of the construct is to catch 5.001m, so we can't use
syntax introduced after 5.001m to do that.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Symbol.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Symbol.pm b/lib/Symbol.pm index 3f99fc545a..67808af082 100644 --- a/lib/Symbol.pm +++ b/lib/Symbol.pm @@ -46,7 +46,7 @@ which are qualified by their nature. =cut -use 5.002; +BEGIN { require 5.002; } require Exporter; @ISA = qw(Exporter); |