Next | Program Repair Shop | 239 |
Avoid Excess Punctuation
Similarly:
last if ( /^SCAN_CELLS/); $seen_CHAIN_TEST=1 if (/CHAIN_TEST/); $ct_scanout = 1 if (/apply\s*\"grp[0-9]_unload\"/);
These become:
last if /^SCAN_CELLS/; $seen_CHAIN_TEST=1 if /CHAIN_TEST/; $ct_scanout=1 if /apply\s*"grp[0-9]_unload"/;
Next | Copyright © 2002 M. J. Dominus |