5ede442a609630efb2eeda3682214948faf6d5c9
tdreszer
  Mon Jun 25 16:18:54 2012 -0700
Next batch of many checkins as dictated by Jim.  Formatting space after if and limiting lines to 100 chars.  Changes limited to lines last touched by tdreszer (git blame) so as not to ruin history.  None of these changes should affect executables in any way.  Only affect is to my sanity and Jim's.
diff --git src/hg/lib/wigAsciiToBinary.c src/hg/lib/wigAsciiToBinary.c
index 78aa15e..b27ece3 100644
--- src/hg/lib/wigAsciiToBinary.c
+++ src/hg/lib/wigAsciiToBinary.c
@@ -566,31 +566,32 @@
     else if (bedData)
 	{
 	Offset = bedChromStart;
 	dataValue = bedDataValue;
 	}
     if (dataValue > overallUpperLimit) overallUpperLimit = dataValue;
     if (dataValue < overallLowerLimit) overallLowerLimit = dataValue;
 
     /* see if this is the first time through, establish chromStart 	*/
     if (validLines == 1)
 	{
 	chromStart = Offset;
 	verbose(2, "first offset: %llu\n", chromStart);
 	}
     else if ((validLines > 1) && (Offset <= previousOffset))
-	errAbort("chrom positions not in numerical order at line %lu. previous: %llu > %llu <-current (offset)", lineCount, BASE_1(previousOffset), BASE_1(Offset));
+	errAbort("chrom positions not in numerical order at line %lu. previous: %llu > %llu "
+                 "<-current (offset)", lineCount, BASE_1(previousOffset), BASE_1(Offset));
 
     /* if we are working on a zoom level and the data is not exactly
      * spaced according to the span, then we need to put each value
      * in its own row in order to keep positioning correct for these
      * data values.  The number of skipped bases has to be an even
      * multiple of dataSpan
      */
     readingFrameSlipped = FALSE;
     if ((validLines > 1) && (dataSpan > 1))
 	{
 	unsigned long long prevEnd = previousOffset + dataSpan;
 	int skippedBases;
 	int spansSkipped;
 	skippedBases = Offset - previousOffset;
 	if (flagOverlapSpanData && (prevEnd > Offset))