=================================================================== RCS file: /cvs/mandoc/eqn_html.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- mandoc/eqn_html.c 2014/09/28 14:06:09 1.6 +++ mandoc/eqn_html.c 2014/09/28 20:14:20 1.7 @@ -1,4 +1,4 @@ -/* $Id: eqn_html.c,v 1.6 2014/09/28 14:06:09 kristaps Exp $ */ +/* $Id: eqn_html.c,v 1.7 2014/09/28 20:14:20 kristaps Exp $ */ /* * Copyright (c) 2011 Kristaps Dzonsons * @@ -113,12 +113,14 @@ eqn_box(struct html *p, const struct eqn_box *bp, int */ switch (bp->pos) { case (EQNPOS_TO): - /* FALLTHROUGH */ + post = print_otag(p, TAG_MOVER, 0, NULL); + break; case (EQNPOS_SUP): post = print_otag(p, TAG_MSUP, 0, NULL); break; case (EQNPOS_FROM): - /* FALLTHROUGH */ + post = print_otag(p, TAG_MUNDER, 0, NULL); + break; case (EQNPOS_SUB): post = print_otag(p, TAG_MSUB, 0, NULL); break; @@ -126,9 +128,10 @@ eqn_box(struct html *p, const struct eqn_box *bp, int post = print_otag(p, TAG_MFRAC, 0, NULL); break; case (EQNPOS_FROMTO): - /* FALLTHROUGH */ + post = print_otag(p, TAG_MUNDEROVER, 0, NULL); + skiptwo = 1; + break; case (EQNPOS_SUBSUP): - /* This requires two elements. */ post = print_otag(p, TAG_MSUBSUP, 0, NULL); skiptwo = 1; break;