aboutsummaryrefslogtreecommitdiff
path: root/scripts/maint/checkSpace.pl
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-06-18 16:10:47 -0400
committerNick Mathewson <nickm@torproject.org>2018-06-29 23:11:02 -0400
commit1953a7e61d7dede47f90016cea13b38bc33554ef (patch)
treee6f3e59ab1459b3e0bcec8eae8b186b556ad4967 /scripts/maint/checkSpace.pl
parent3c0a63c40f8f41742bf6a4ab58165e8f25aab34a (diff)
downloadtor-1953a7e61d7dede47f90016cea13b38bc33554ef.tar.gz
tor-1953a7e61d7dede47f90016cea13b38bc33554ef.zip
Finally remove our EOL@EOF check.
This check was added by mistake long ago. It will be nice to see these EOLs disappear from our code over time. (backport from master)
Diffstat (limited to 'scripts/maint/checkSpace.pl')
-rwxr-xr-xscripts/maint/checkSpace.pl6
1 files changed, 0 insertions, 6 deletions
diff --git a/scripts/maint/checkSpace.pl b/scripts/maint/checkSpace.pl
index e90f5b330b..5af95a27e5 100755
--- a/scripts/maint/checkSpace.pl
+++ b/scripts/maint/checkSpace.pl
@@ -177,11 +177,5 @@ for $fn (@ARGV) {
}
}
}
- ## Warn if the file doesn't end with a blank line.
- # (End each file with a single blank line.)
- if (! $lastnil) {
- print " EOL\@EOF:$fn:$.\n";
- }
close(F);
}
-