summaryrefslogtreecommitdiffstats
path: root/man_term.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2017-05-05 13:17:54 +0000
committerIngo Schwarze <schwarze@openbsd.org>2017-05-05 13:17:54 +0000
commit3f8e564abc73c1abd2c1286b5e767b2b101aae57 (patch)
treeaebccb1b6107a9e62ad1dac4da8dd4c414557473 /man_term.c
parent15bf890a36f565c8fdfdcc05f8aea480a1026b98 (diff)
downloadmandoc-3f8e564abc73c1abd2c1286b5e767b2b101aae57.tar.gz
move .ll to the roff modules
Diffstat (limited to 'man_term.c')
-rw-r--r--man_term.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/man_term.c b/man_term.c
index 5b8a3809..8deb0dc6 100644
--- a/man_term.c
+++ b/man_term.c
@@ -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_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;
@@ -217,14 +215,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)
{