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/fa.c src/lib/fa.c
index 930ff9a..61f448b 100644
--- src/lib/fa.c
+++ src/lib/fa.c
@@ -1,22 +1,22 @@
 /* Routines for reading and writing fasta format sequence files.
  *
  * This file is copyright 2002 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 
 #include "common.h"
-#include "errabort.h"
+#include "errAbort.h"
 #include "hash.h"
 #include "portable.h"
 #include "dnautil.h"
 #include "dnaseq.h"
 #include "fa.h"
 #include "linefile.h"
 
 
 boolean faReadNext(FILE *f, char *defaultName, boolean mustStartWithComment,
                          char **retCommentLine, struct dnaSeq **retSeq) 
 /* Read next sequence from .fa file. Return sequence in retSeq.  
  * If retCommentLine is non-null
  * return the '>' line in retCommentLine.   
  * The whole thing returns FALSE at end of file.  
  * DNA chars are mapped to lower case.*/