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

remove //DOC in the right place

parent 4ed996f5
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,7 @@ for($i=0; $i<@lines; $i+=50){
print "$now $h Page $page\n";
print "\n\n";
for($j=$i; $j<@lines && $j<$i +50; $j++){
$lines[$j] =~ s!//DOC.*!!;
print $lines[$j];
}
for(; $j<$i+50; $j++){
......
......@@ -19,7 +19,6 @@ $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