--- psiconv/trunk/program/psiconv/gen_html.c 2000/12/15 17:17:45 66 +++ psiconv/trunk/program/psiconv/gen_html.c 2000/12/15 18:52:49 67 @@ -102,7 +102,7 @@ psiconv_bool_false, /* bold */ psiconv_normalscript, /* super_sub */ psiconv_bool_false, /* underline */ - psiconv_bool_false, /* strike_out */ + psiconv_bool_false, /* strikethrough */ NULL, /* font */ }; base_char_struct.color = color; @@ -133,7 +133,7 @@ fputs("",of); if (old->underline) fputs("",of); - if (old->strike_out) + if (old->strikethrough) fputs("",of); if (old->super_sub == psiconv_superscript) fputs("",of); @@ -175,7 +175,7 @@ fputs("",of); if (new->underline) fputs("",of); - if (new->strike_out) + if (new->strikethrough) fputs("",of); if (new->super_sub == psiconv_superscript) fputs("",of); @@ -200,8 +200,8 @@ else fputs("",of); } - if (old->strike_out != new->strike_out) { - if (old->strike_out) + if (old->strikethrough != new->strikethrough) { + if (old->strikethrough) fputs("",of); else fputs("",of);