Could SED auto-indent in this case:
if(something or other is true)
do this stuff here;
should become:
if(something or other is true)
do this stuff here;
basically: if there's a ; somewhere after an if statement and there's no { between the two, AND there's a line break between the two, then indent the line after the if...?