f22c4f66ef0a9f037d283f24353a7a9349a225cc tdreszer Wed May 4 15:38:15 2011 -0700 Greg found this one was supposed to be color: not font-color: diff --git src/lib/seqOut.c src/lib/seqOut.c index c8d85e0..dc2177b 100644 --- src/lib/seqOut.c +++ src/lib/seqOut.c @@ -43,31 +43,31 @@ fprintf(cfm->out, "</B>"); if (cfm->italic) fprintf(cfm->out, "</I>"); } static void cfmPushFormat(struct cfm *cfm) /* Set format. */ { if (cfm->italic) fprintf(cfm->out, "<I>"); if (cfm->bold) fprintf(cfm->out, "<B>"); if (cfm->underline) fprintf(cfm->out, "<span style='text-decoration:underline;'>"); if (cfm->color != 0) - fprintf(cfm->out, "<span style='font-color:#%06X;'>", cfm->color); + fprintf(cfm->out, "<span style='color:#%06X;'>", cfm->color); } void cfmOutExt(struct cfm *cfm, char c, int color, boolean underline, boolean bold, boolean italic) /* Write out a byte, and formatting extras */ { if (color != cfm->color || underline != cfm->underline || bold != cfm->bold || italic != cfm->italic) { cfmPopFormat(cfm); cfm->color = color; cfm->underline = underline; cfm->bold = bold; cfm->italic = italic; cfmPushFormat(cfm); }