Skip to content

Commit

Permalink
Doc/style fixes pointed out by Gisle
Browse files Browse the repository at this point in the history
p4raw-id: //depot/perl@25777
  • Loading branch information
rgs committed Oct 17, 2005
1 parent c8f896e commit 5ca7f68
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions lib/warnings/register.pm
@@ -1,4 +1,4 @@
package warnings::register ;
package warnings::register;

our $VERSION = '1.00';

Expand All @@ -10,42 +10,42 @@ warnings::register - warnings import function
=head1 SYNOPSIS
use warnings::register ;
use warnings::register;
=head1 DESCRIPTION
Create a warnings category with the same name as the current package.
See L<perlmodlib/Pragmatic Modules> and L<perllexwarn>.
Creates a warnings category with the same name as the current package.
See L<warnings> and L<perllexwarn> for more information on this module's
usage.
=cut

require warnings ;
require warnings;

sub mkMask
{
my ($bit) = @_ ;
my $mask = "" ;
my ($bit) = @_;
my $mask = "";

vec($mask, $bit, 1) = 1 ;
return $mask ;
vec($mask, $bit, 1) = 1;
return $mask;
}

sub import
{
shift ;
my $package = (caller(0))[0] ;
shift;
my $package = (caller(0))[0];
if (! defined $warnings::Bits{$package}) {
$warnings::Bits{$package} = mkMask($warnings::LAST_BIT) ;
vec($warnings::Bits{'all'}, $warnings::LAST_BIT, 1) = 1 ;
$warnings::Offsets{$package} = $warnings::LAST_BIT ++ ;
$warnings::Bits{$package} = mkMask($warnings::LAST_BIT);
vec($warnings::Bits{'all'}, $warnings::LAST_BIT, 1) = 1;
$warnings::Offsets{$package} = $warnings::LAST_BIT ++;
foreach my $k (keys %warnings::Bits) {
vec($warnings::Bits{$k}, $warnings::LAST_BIT, 1) = 0 ;
vec($warnings::Bits{$k}, $warnings::LAST_BIT, 1) = 0;
}
$warnings::DeadBits{$package} = mkMask($warnings::LAST_BIT);
vec($warnings::DeadBits{'all'}, $warnings::LAST_BIT++, 1) = 1 ;
vec($warnings::DeadBits{'all'}, $warnings::LAST_BIT++, 1) = 1;
}
}

1 ;
1;

0 comments on commit 5ca7f68

Please sign in to comment.