=================================================================== RCS file: /cvs/mandoc/man_html.c,v retrieving revision 1.78 retrieving revision 1.81 diff -u -p -r1.78 -r1.81 --- mandoc/man_html.c 2011/07/07 13:54:36 1.78 +++ mandoc/man_html.c 2011/08/18 09:16:01 1.81 @@ -1,4 +1,4 @@ -/* $Id: man_html.c,v 1.78 2011/07/07 13:54:36 kristaps Exp $ */ +/* $Id: man_html.c,v 1.81 2011/08/18 09:16:01 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * @@ -36,7 +36,6 @@ /* FIXME: have PD set the default vspace width. */ #define INDENT 5 -#define HALFINDENT 3 #define MAN_ARGS const struct man_meta *m, \ const struct man_node *n, \ @@ -201,7 +200,6 @@ print_man_node(MAN_ARGS) { int child; struct tag *t; - struct htmlpair tag; child = 1; t = h->tags.head; @@ -229,9 +227,7 @@ print_man_node(MAN_ARGS) print_text(h, n->string); return; case (MAN_EQN): - PAIR_CLASS_INIT(&tag, "eqn"); - print_otag(h, TAG_SPAN, 1, &tag); - print_text(h, n->eqn->data); + print_eqn(h, n->eqn); break; case (MAN_TBL): /*