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/xp.c src/lib/xp.c
index 50803cb..87e67fa 100644
--- src/lib/xp.c
+++ src/lib/xp.c
@@ -1,26 +1,26 @@
 /* xp - A minimal non-verifying xml parser.  It's
  * stream oriented much like expas.  It's a bit faster
  * and smaller than expas.  I'm not sure it handles unicode
  * as well.
  *
  * This file is copyright 2002-2005 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 
 #include "common.h"
 #include "dystring.h"
-#include "errabort.h"
+#include "errAbort.h"
 #include "hash.h"
 #include "xp.h"
 #include "xmlEscape.h"
 
 
 
 char xpNextBuf(struct xp *xp)
 /* Fetch a new buffer and return first char.  Return 0 at EOF. */
 {
 int size = xp->read(xp->userData, xp->inBuf, sizeof(xp->inBuf));
 if (size <= 0)
     return 0;
 xp->inBufEnd = xp->inBuf + size;
 xp->in = xp->inBuf+1;
 return xp->inBuf[0];