Code style: break up long lines
For lines blowing past the 100-char width barrier, take a couple of
approaches:
* Use the "x" operator to multiply strings, rather than explicitly
copy the space operator over and over
* Try to keep long lines broken at a natural point once you get
in the vicinity of 80 chars
Also, for extremely long lines, it becomes much more legible to put the
conditional test at the start, rather than appending it to the end;
otherwise you have to read all of the way through the line before
realizing that the line doesn't apply to your case because of the
appended condition.
Signed-off-by: Dan Scott <dscott@laurentian.ca>