diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-12-17 13:58:01 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-02-06 14:33:05 -0500 |
commit | f1d371bf32d33cee95df1b13daa43686f81d94ef (patch) | |
tree | 40e81b17527e8742c5a6b56df63530c6ad84dd89 /scripts/maint/checkSpace.pl | |
parent | 573ab70bfe4c6239a3fffda89b1a95e4e7ca10aa (diff) | |
download | tor-f1d371bf32d33cee95df1b13daa43686f81d94ef.tar.gz tor-f1d371bf32d33cee95df1b13daa43686f81d94ef.zip |
checkSpace: remove the nosplabel test.
Diffstat (limited to 'scripts/maint/checkSpace.pl')
-rwxr-xr-x | scripts/maint/checkSpace.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/maint/checkSpace.pl b/scripts/maint/checkSpace.pl index f4e6f733c8..96a256968a 100755 --- a/scripts/maint/checkSpace.pl +++ b/scripts/maint/checkSpace.pl @@ -58,9 +58,9 @@ for my $fn (@ARGV) { } ## Warn about labels that don't have a space in front of them # (We indent every label at least one space) - if (/^[a-zA-Z_][a-zA-Z_0-9]*:/) { - msg "nosplabel:$fn:$.\n"; - } + #if (/^[a-zA-Z_][a-zA-Z_0-9]*:/) { + # msg "nosplabel:$fn:$.\n"; + #} ## Warn about trailing whitespace. # (We don't allow whitespace at the end of the line; make your # editor highlight it for you so you can stop adding it in.) |