From: Vincent Pit Date: Fri, 23 Aug 2013 14:45:29 +0000 (-0300) Subject: Remove trailing whitespace X-Git-Tag: v0.08~7 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fsubs-auto.git;a=commitdiff_plain;h=e991bf497476b7c8b8a9558ac58dc1989c558e6e Remove trailing whitespace --- diff --git a/lib/subs/auto.pm b/lib/subs/auto.pm index e804cf5..3bc6ba1 100644 --- a/lib/subs/auto.pm +++ b/lib/subs/auto.pm @@ -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 diff --git a/t/10-base.t b/t/10-base.t index c96ba8c..5d09c90 100644 --- a/t/10-base.t +++ b/t/10-base.t @@ -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');