diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-05-05 13:17:54 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-05-05 13:17:54 +0000 |
commit | 3f8e564abc73c1abd2c1286b5e767b2b101aae57 (patch) | |
tree | aebccb1b6107a9e62ad1dac4da8dd4c414557473 /man_term.c | |
parent | 15bf890a36f565c8fdfdcc05f8aea480a1026b98 (diff) | |
download | mandoc-3f8e564abc73c1abd2c1286b5e767b2b101aae57.tar.gz |
move .ll to the roff modules
Diffstat (limited to 'man_term.c')
-rw-r--r-- | man_term.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -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) { |