From: Jesse Vincent <jesse@bestpractical.com>
Date: Fri, 18 Dec 2009 18:45:07 +0000 (-0500)
Subject: Detabify manicheck
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3618011f7e987e79cd79c536e841867bb3404493;p=p5sagit%2Fp5-mst-13.2.git

Detabify manicheck
---

diff --git a/Porting/manicheck b/Porting/manicheck
index 9fff861..2620943 100644
--- a/Porting/manicheck
+++ b/Porting/manicheck
@@ -19,8 +19,8 @@ find {
     wanted => sub {
         my $x = $File::Find::name; $x =~ s/^..//;
         return if -d;
-	return if $_ eq '.gitignore';
-	return if $x =~ /^\.git\b/;
+        return if $_ eq '.gitignore';
+        return if $x =~ /^\.git\b/;
         print "$File::Find::name not in MANIFEST\n" if !$files{$x};
     },
 }, ".";