=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/eqn_html.c,v retrieving revision 1.1 retrieving revision 1.2 diff -c -r1.1 -r1.2 *** src/usr.bin/mandoc/eqn_html.c 2011/09/18 10:25:28 1.1 --- src/usr.bin/mandoc/eqn_html.c 2014/04/20 16:44:44 1.2 *************** *** 1,4 **** ! /* $Id: eqn_html.c,v 1.1 2011/09/18 10:25:28 schwarze Exp $ */ /* * Copyright (c) 2011 Kristaps Dzonsons * --- 1,4 ---- ! /* $Id: eqn_html.c,v 1.2 2014/04/20 16:44:44 schwarze Exp $ */ /* * Copyright (c) 2011 Kristaps Dzonsons * *************** *** 14,23 **** * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ - #ifdef HAVE_CONFIG_H - #include "config.h" - #endif - #include #include #include --- 14,19 ---- *************** *** 35,43 **** TAG_I /* EQNFONT_ITALIC */ }; - static void eqn_box(struct html *, const struct eqn_box *); void print_eqn(struct html *p, const struct eqn *ep) { --- 31,39 ---- TAG_I /* EQNFONT_ITALIC */ }; static void eqn_box(struct html *, const struct eqn_box *); + void print_eqn(struct html *p, const struct eqn *ep) { *************** *** 59,70 **** { struct tag *t; ! t = EQNFONT_NONE == bp->font ? NULL : ! print_otag(p, fontmap[(int)bp->font], 0, NULL); if (bp->left) print_text(p, bp->left); ! if (bp->text) print_text(p, bp->text); --- 55,66 ---- { struct tag *t; ! t = EQNFONT_NONE == bp->font ? NULL : ! print_otag(p, fontmap[(int)bp->font], 0, NULL); if (bp->left) print_text(p, bp->left); ! if (bp->text) print_text(p, bp->text);