=================================================================== RCS file: /cvs/mandoc/mdoc_man.c,v retrieving revision 1.104 retrieving revision 1.106 diff -u -p -r1.104 -r1.106 --- mandoc/mdoc_man.c 2017/02/17 19:15:41 1.104 +++ mandoc/mdoc_man.c 2017/04/14 18:25:04 1.106 @@ -1,4 +1,4 @@ -/* $Id: mdoc_man.c,v 1.104 2017/02/17 19:15:41 schwarze Exp $ */ +/* $Id: mdoc_man.c,v 1.106 2017/04/14 18:25:04 schwarze Exp $ */ /* * Copyright (c) 2011-2017 Ingo Schwarze * @@ -715,8 +715,7 @@ static int pre__t(DECL_ARGS) { - if (n->parent && MDOC_Rs == n->parent->tok && - n->parent->norm->Rs.quote_T) { + if (n->parent->tok == MDOC_Rs && n->parent->norm->Rs.quote_T) { print_word("\\(lq"); outflags &= ~MMAN_spc; } else @@ -728,8 +727,7 @@ static void post__t(DECL_ARGS) { - if (n->parent && MDOC_Rs == n->parent->tok && - n->parent->norm->Rs.quote_T) { + if (n->parent->tok == MDOC_Rs && n->parent->norm->Rs.quote_T) { outflags &= ~MMAN_spc; print_word("\\(rq"); } else @@ -1476,8 +1474,8 @@ pre_lk(DECL_ARGS) print_word(descr->string); descr = descr->next; } - print_word(":"); font_pop(); + print_word(":"); } font_push('B');