]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Finally remove our EOL@EOF check.
authorNick Mathewson <nickm@torproject.org>
Mon, 18 Jun 2018 20:10:47 +0000 (16:10 -0400)
committerNick Mathewson <nickm@torproject.org>
Sat, 30 Jun 2018 03:11:02 +0000 (23:11 -0400)
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)

scripts/maint/checkSpace.pl

index e90f5b330b11da19605af9c80b50b241bfa7968c..5af95a27e5b9e7dcc5c80af165e27e2565d34312 100755 (executable)
@@ -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);
 }
-