aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit264209da4a75cf323caf3e1a5e89534f15086b73 (patch)
tree48a9e3b0104477eb2934ee5b430c3f5e31d3ecc2 /man_term.c
parentecf3d7a66ad4080c5dabd04c50179340b4f39242 (diff)
downloadmandoc-264209da4a75cf323caf3e1a5e89534f15086b73.tar.gz
mandoc-264209da4a75cf323caf3e1a5e89534f15086b73.tar.zst
mandoc-264209da4a75cf323caf3e1a5e89534f15086b73.zip
move .ll to the roff modules
Diffstat (limited to 'man_term.c')
-rw-r--r--man_term.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/man_term.c b/man_term.c
index ac04dd6f..ba096f0d 100644
--- a/man_term.c
+++ b/man_term.c
@@ -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 <kristaps@bsd.lv>
* Copyright (c) 2010-2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -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)
{