summaryrefslogtreecommitdiffstatshomepage
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
commit0e3a34d005ada7fe44f2109d7f478eaa1cdebbfe (patch)
tree2e8e1f3cf1585fa4eaab2be244554b6e5b1c446e /man_term.c
parent69aa51d6949e1d3de01c2ea5805b786fa4d2822e (diff)
downloadmandoc-0e3a34d005ada7fe44f2109d7f478eaa1cdebbfe.tar.gz
mandoc-0e3a34d005ada7fe44f2109d7f478eaa1cdebbfe.tar.zst
mandoc-0e3a34d005ada7fe44f2109d7f478eaa1cdebbfe.zip
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.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/man_term.c b/man_term.c
index 07b17029..704511b4 100644
--- a/man_term.c
+++ b/man_term.c
@@ -1,4 +1,4 @@
-/* $Id: man_term.c,v 1.52 2009/11/12 05:50:12 kristaps Exp $ */
+/* $Id: man_term.c,v 1.53 2009/11/12 08:00:21 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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)
{