diff --git a/source/script/count_80_col.pl b/source/script/count_80_col.pl index e1c8ff46a2d..8b226228c97 100755 --- a/source/script/count_80_col.pl +++ b/source/script/count_80_col.pl @@ -3,7 +3,8 @@ open( INFILE, "$ARGV[0]" ) || die $@; $count = 0; -while ( ) { +while ( ) { + next if ($_ =~ /^#define/); $count++ if (length($_) > 80); }