=================================================================== RCS file: /cvs/mandoc/mdoc_term.c,v retrieving revision 1.351 retrieving revision 1.352 diff -u -p -r1.351 -r1.352 --- mandoc/mdoc_term.c 2017/05/04 17:48:29 1.351 +++ mandoc/mdoc_term.c 2017/05/04 22:16:09 1.352 @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.351 2017/05/04 17:48:29 schwarze Exp $ */ +/* $Id: mdoc_term.c,v 1.352 2017/05/04 22:16:09 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2012-2017 Ingo Schwarze @@ -365,13 +365,7 @@ print_mdoc_node(DECL_ARGS) break; default: if (n->tok < ROFF_MAX) { - switch (n->tok) { - case ROFF_br: - termp_sp_pre(p, &npair, meta, n); - break; - default: - abort(); - } + roff_term_pre(p, n); break; } assert(n->tok >= MDOC_Dd && n->tok < MDOC_MAX);