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/jointalign.c src/lib/jointalign.c index c95b83e..2ddb209 100644 --- src/lib/jointalign.c +++ src/lib/jointalign.c @@ -1,22 +1,22 @@ /* jointalign.c - routines for printing a joint alignment in html. * * This file is copyright 2002 Ryan Weber, but license is hereby * granted for all use - public, private or commercial. */ #include "common.h" -#include "errabort.h" +#include "errAbort.h" #include "jointalign.h" void htmlPrintJointAlignment( char *seq1, char *seq2, int columnNum, int start, int end, char *strand ) /* Print sequences 1 and 2 (assumed to be a joint alignment), * formatted for html output. Coordinates are printed based on * the start and end positions and oriented according to the * strand the sequences are on (+ or -). (NO COORDINATES YET)*/ { int i; validateSeqs( seq1, seq2 ); /*print the sequences with lines connecting identical residues