=================================================================== RCS file: /cvs/mandoc/mdoc_term.c,v retrieving revision 1.162 retrieving revision 1.163 diff -u -p -r1.162 -r1.163 --- mandoc/mdoc_term.c 2010/06/29 19:20:38 1.162 +++ mandoc/mdoc_term.c 2010/07/01 14:34:03 1.163 @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.162 2010/06/29 19:20:38 schwarze Exp $ */ +/* $Id: mdoc_term.c,v 1.163 2010/07/01 14:34:03 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -327,7 +327,7 @@ print_mdoc_node(DECL_ARGS) if (MDOC_TEXT == n->type) term_word(p, n->string); - else if (termacts[n->tok].pre && !n->end) + else if (termacts[n->tok].pre && ENDBODY_NOT == n->end) chld = (*termacts[n->tok].pre)(p, &npair, m, n); if (chld && n->child)