X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FExporter.pm;h=2b860f384a88b86b0e686a565c309caaf638e69b;hb=7b9ef14019d3c4d1aa14641dbd421c81c2cd18a4;hp=176f6b8a98f45025bed78362912acdf41688849f;hpb=fe43f860c5d2e34a3ae8a9320e2ba4f6b396ff1e;p=p5sagit%2Fp5-mst-13.2.git diff --git a/lib/Exporter.pm b/lib/Exporter.pm index 176f6b8..2b860f3 100644 --- a/lib/Exporter.pm +++ b/lib/Exporter.pm @@ -9,9 +9,10 @@ require 5.006; our $Debug = 0; our $ExportLevel = 0; our $Verbose ||= 0; -our $VERSION = '5.57'; +our $VERSION = '5.59'; our (%Cache); -$Carp::Internal{Exporter} = 1; +# Carp does this now for us, so we can finally live w/o Carp +#$Carp::Internal{Exporter} = 1; sub as_heavy { require Exporter::Heavy; @@ -212,9 +213,9 @@ need to know to use Exporter. =head2 Specialised Import Lists -If the first entry in an import list begins with !, : or / then the -list is treated as a series of specifications which either add to or -delete from the list of names to import. They are processed left to +If any of the entries in an import list begins with !, : or / then +the list is treated as a series of specifications which either add to +or delete from the list of names to import. They are processed left to right. Specifications are in the form: [!]name This name only