Next | Program Repair Shop | 238 |
We now have:
if (/apply/ && ($seen_CHAIN_TEST)) {
The original code was:
21 if (( /\t*chain\s+\"chain([0-9])\"/) && ($chain_test)){
Let's Avoid Excess Punctuation
We can at least get rid of the superstitious parentheses
The \ before the "es are also unnecessary
perl -nle 'print if /"".*"/ will confirm this
Next | Copyright © 2002 M. J. Dominus |