Skip to content
Snippets Groups Projects
Commit 4ed996f5 authored by Russ Cox's avatar Russ Cox
Browse files

strip //DOC comments during printing

parent d42cbd75
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@ $linenum = 0;
foreach (@lines) {
$linenum++;
chomp;
s!//DOC.*!!;
s/\s+$//;
if(length() >= 75){
print STDERR "$file:$linenum: line too long\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment