summaryrefslogtreecommitdiffstats
path: root/man_term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-11-12 08:00:21 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-11-12 08:00:21 +0000
commit8f5752d2fe1a20c227cf2afa8c9253a374b6d0b2 (patch)
tree0607f2e314e30e34754a48ca52eee05fdf91ffd1 /man_term.c
parenteca9b44deb6e6fe964847567a5437b3a46dd2635 (diff)
downloadmandoc-8f5752d2fe1a20c227cf2afa8c9253a374b6d0b2.tar.gz
Deprecated ".i <notext>" support (nobody uses it -- it can be re-added, but adds a bit of complexity that I'd rather avoid).
Diffstat (limited to 'man_term.c')
-rw-r--r--man_term.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/man_term.c b/man_term.c
index 6932c3fb..939bc049 100644
--- a/man_term.c
+++ b/man_term.c
@@ -104,7 +104,6 @@ static void post_RS(DECL_ARGS);
static void post_SH(DECL_ARGS);
static void post_SS(DECL_ARGS);
static void post_TP(DECL_ARGS);
-static void post_i(DECL_ARGS);
static const struct termact termacts[MAN_MAX] = {
{ pre_br, NULL }, /* br */
@@ -129,7 +128,7 @@ static const struct termact termacts[MAN_MAX] = {
{ pre_RI, NULL }, /* IR */
{ pre_RI, NULL }, /* RI */
{ NULL, NULL }, /* na */
- { pre_I, post_i }, /* i */
+ { pre_I, NULL }, /* i */
{ pre_sp, NULL }, /* sp */
{ pre_nf, NULL }, /* nf */
{ pre_fi, NULL }, /* fi */
@@ -244,17 +243,6 @@ pre_I(DECL_ARGS)
/* ARGSUSED */
-static void
-post_i(DECL_ARGS)
-{
-
- /* FIXME */
- /*if (n->nchild)
- p->under--;*/
-}
-
-
-/* ARGSUSED */
static int
pre_fi(DECL_ARGS)
{