Next | Program Repair Shop | 229 |
90 s/$/;/g if (/apply/);
apply "grp1_load" 0 =;
What is line 90 for?
It might be superfluous
It might be there because not all inputs will have ; on the apply lines
It might be there Just In Case
I'm going to take a middle way:
Assume that the ; will always be there
But raise a fatal error if it is missing
die "Missing ';' in 'apply' line" if /apply[^;]*\n/;
Next | Copyright © 2002 M. J. Dominus |