6e5ee11ca95cd971984038cf65bae00d9c898707
galt
  Wed Jun 4 15:40:02 2014 -0700
Since we have git, it is easy to rename errabort.c to errAbort.c without losing any history.
diff --git src/lib/annoGratorQuery.c src/lib/annoGratorQuery.c
index f93d297..97cb506 100644
--- src/lib/annoGratorQuery.c
+++ src/lib/annoGratorQuery.c
@@ -1,23 +1,23 @@
 /* annoGratorQuery -- framework for integrating genomic annotations from many sources */
 
 /* Copyright (C) 2013 The Regents of the University of California 
  * See README in this or parent directory for licensing information. */
 
 #include "annoGratorQuery.h"
 #include "dystring.h"
-#include "errabort.h"
+#include "errAbort.h"
 #include "obscure.h"
 
 struct annoGratorQuery
 /* Representation of a complex query: multiple sources, each with its own filters,
  * output data and means of integration, aggregated and output by a formatter. */
     {
     struct annoAssembly *assembly;	// Genome assembly to which annotations belong
     struct annoStreamer *primarySource;	// Annotations to be integrated with other annos.
     struct annoGrator *integrators;	// Annotations & methods for integrating w/primary
     struct annoFormatter *formatters;	// Writers of output collected from primary & intg's
     };
 
 struct annoGratorQuery *annoGratorQueryNew(struct annoAssembly *assembly,
 					   struct annoStreamer *primarySource,
 					   struct annoGrator *integrators,