summaryrefslogtreecommitdiff
path: root/lib/Symbol.pm
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters@africa.nicoh.com>1996-04-26 00:57:26 +0000
committerAndy Dougherty <doughera@lafcol.lafayette.edu>1996-04-26 00:57:26 +0000
commit3dc8e7ab4fe68f9ea771413bb082b0667954806f (patch)
tree11de6aba6ebf5c5b185cc5631fa1ed2960b73492 /lib/Symbol.pm
parent451b636e23e7a85e8c02883768861b52bb058908 (diff)
downloadperl-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/Symbol.pm')
-rw-r--r--lib/Symbol.pm2
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);