=================================================================== RCS file: /cvs/mandoc/man_term.c,v retrieving revision 1.195 retrieving revision 1.196 diff -u -p -r1.195 -r1.196 --- mandoc/man_term.c 2017/05/05 02:06:19 1.195 +++ mandoc/man_term.c 2017/05/05 13:17:55 1.196 @@ -1,4 +1,4 @@ -/* $Id: man_term.c,v 1.195 2017/05/05 02:06:19 schwarze Exp $ */ +/* $Id: man_term.c,v 1.196 2017/05/05 13:17:55 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons * Copyright (c) 2010-2015, 2017 Ingo Schwarze @@ -83,7 +83,6 @@ static int pre_alternate(DECL_ARGS); static int pre_ign(DECL_ARGS); static int pre_in(DECL_ARGS); static int pre_literal(DECL_ARGS); -static int pre_ll(DECL_ARGS); static int pre_sp(DECL_ARGS); static void post_IP(DECL_ARGS); @@ -130,7 +129,6 @@ static const struct termact __termacts[MAN_MAX - MAN_T { pre_literal, NULL, 0 }, /* EE */ { pre_UR, post_UR, 0 }, /* UR */ { NULL, NULL, 0 }, /* UE */ - { pre_ll, NULL, MAN_NOTEXT }, /* ll */ }; static const struct termact *termacts = __termacts - MAN_TH; @@ -213,14 +211,6 @@ static int pre_ign(DECL_ARGS) { - return 0; -} - -static int -pre_ll(DECL_ARGS) -{ - - term_setwidth(p, n->child != NULL ? n->child->string : NULL); return 0; }