From: Perl 5 Porters Date: Fri, 26 Apr 1996 00:57:26 +0000 (+0000) Subject: perl 5.003_03: lib/Symbol.pm X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3dc8e7ab4fe68f9ea771413bb082b0667954806f;p=p5sagit%2Fp5-mst-13.2.git 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. --- diff --git a/lib/Symbol.pm b/lib/Symbol.pm index 3f99fc5..67808af 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);