=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/eqn_term.c,v retrieving revision 1.1 retrieving revision 1.2 diff -c -r1.1 -r1.2 *** src/usr.bin/mandoc/eqn_term.c 2011/09/18 10:25:28 1.1 --- src/usr.bin/mandoc/eqn_term.c 2014/04/20 16:44:44 1.2 *************** *** 1,4 **** ! /* $Id: eqn_term.c,v 1.1 2011/09/18 10:25:28 schwarze Exp $ */ /* * Copyright (c) 2011 Kristaps Dzonsons * --- 1,4 ---- ! /* $Id: eqn_term.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 ---- *************** *** 37,42 **** --- 33,39 ---- static void eqn_box(struct termp *, const struct eqn_box *); + void term_eqn(struct termp *p, const struct eqn *ep) { *************** *** 68,74 **** term_word(p, ")"); if (bp->right) term_word(p, bp->right); ! if (EQNFONT_NONE != bp->font) term_fontpop(p); if (bp->next) --- 65,71 ---- term_word(p, ")"); if (bp->right) term_word(p, bp->right); ! if (EQNFONT_NONE != bp->font) term_fontpop(p); if (bp->next)