]> git.vpit.fr Git - perl/modules/subs-auto.git/commitdiff
Remove trailing whitespace
authorVincent Pit <vince@profvince.com>
Fri, 23 Aug 2013 14:45:29 +0000 (11:45 -0300)
committerVincent Pit <vince@profvince.com>
Fri, 23 Aug 2013 14:45:29 +0000 (11:45 -0300)
lib/subs/auto.pm
t/10-base.t

index e804cf57c45be09e50df7f8dd95d02c557321d5c..3bc6ba144bcc0a42b866edbbf705bd84d17840ef 100644 (file)
@@ -36,7 +36,7 @@ BEGIN {
                       #  or "print(foo('wut'))" otherwise
     } # ... but function calls will fail at run-time if you don't
       # actually define foo somewhere
-    
+
     foo; # BANG
 
 =head1 DESCRIPTION
index c96ba8cd985e9e69eef237ecb96c6b0dbaea1def..5d09c90b109b0332eacd645cbd6b3d15b61043eb 100644 (file)
@@ -196,7 +196,7 @@ is($foo, 7, 'foo really was executed');
 
 $warn = undef;
 eval {
- local $SIG{__WARN__} = sub { $warn = $_[0] =~ /Subroutine\s+\S+redefined/ }; 
+ local $SIG{__WARN__} = sub { $warn = $_[0] =~ /Subroutine\s+\S+redefined/ };
  local *qux = sub { $qux = $_[0] };
  qux 5;
 };
@@ -236,7 +236,7 @@ my $cb = eval {
    no strict;
    no warnings 'reserved';
    blech;
-  }  
+  }
  }
 };
 _got_ok('compiling to bareword');