diff options
author | 2017-05-05 13:17:04 +0000 | |
---|---|---|
committer | 2017-05-05 13:17:04 +0000 | |
commit | 644b390b9489f095c08e2ee294f32b9461273182 (patch) | |
tree | 442fd84036dfe2370262754055d6d084379a1adc /usr.bin/mandoc/man_term.c | |
parent | Remove /* FALLTHROUGH */ that isn't (and shouldn't). (diff) | |
download | wireguard-openbsd-644b390b9489f095c08e2ee294f32b9461273182.tar.xz wireguard-openbsd-644b390b9489f095c08e2ee294f32b9461273182.zip |
move .ll to the roff modules
Diffstat (limited to 'usr.bin/mandoc/man_term.c')
-rw-r--r-- | usr.bin/mandoc/man_term.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/usr.bin/mandoc/man_term.c b/usr.bin/mandoc/man_term.c index e9bdd235f80..b57891320bb 100644 --- a/usr.bin/mandoc/man_term.c +++ b/usr.bin/mandoc/man_term.c @@ -1,4 +1,4 @@ -/* $OpenBSD: man_term.c,v 1.148 2017/05/05 02:06:17 schwarze Exp $ */ +/* $OpenBSD: man_term.c,v 1.149 2017/05/05 13:17:04 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2010-2015, 2017 Ingo Schwarze <schwarze@openbsd.org> @@ -81,7 +81,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); @@ -128,7 +127,6 @@ static const struct termact __termacts[MAN_MAX - MAN_TH] = { { 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; @@ -215,14 +213,6 @@ pre_ign(DECL_ARGS) } static int -pre_ll(DECL_ARGS) -{ - - term_setwidth(p, n->child != NULL ? n->child->string : NULL); - return 0; -} - -static int pre_I(DECL_ARGS) { |