diff options
author | Ilya Zakharevich <ilya@math.ohio-state.edu> | 1996-02-05 01:37:02 -0500 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-02-05 01:37:02 -0500 |
commit | 1a4c28899c9c5bf6dab01740f031e24f77cac253 (patch) | |
tree | 2ba43cee426f136c2ec1a77cc093f39d8ea89108 /lib/AutoLoader.pm | |
parent | 6d64b06f7a33b9ca2cabcae3d8408ab3bbdfbf62 (diff) | |
download | perl-1a4c28899c9c5bf6dab01740f031e24f77cac253.tar.gz |
Autoloadwarnings
Here is a correction for autoloader. Note that one cannot
use vars '$package::var';
, alas.
Diffstat (limited to 'lib/AutoLoader.pm')
-rw-r--r-- | lib/AutoLoader.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/AutoLoader.pm b/lib/AutoLoader.pm index 2082a280d0..566ca8688e 100644 --- a/lib/AutoLoader.pm +++ b/lib/AutoLoader.pm @@ -1,5 +1,6 @@ package AutoLoader; use Carp; +$DB::sub = $DB::sub; # Avoid warning =head1 NAME |