summaryrefslogtreecommitdiffstats
path: root/roff.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-05-15 20:51:40 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-05-15 20:51:40 +0000
commit45ec86af0876cfb3fe26e9d6545dd7fe008b81f0 (patch)
tree2be8f9a2ca8e4913741f6f25bed437d316915fb0 /roff.c
parent3094579682f28cc9511e5e52f5fef2f4ee335f8c (diff)
downloadmandoc-45ec86af0876cfb3fe26e9d6545dd7fe008b81f0.tar.gz
Pull `ig' out of -man and leave it the roff preparser.
Diffstat (limited to 'roff.c')
-rw-r--r--roff.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/roff.c b/roff.c
index 0db87efa..0782fd8f 100644
--- a/roff.c
+++ b/roff.c
@@ -76,7 +76,6 @@ const struct roffmac roffs[ROFF_MAX] = {
{ ".", NULL, roff_new_close },
};
-static void roff_alloc1(struct roff *);
static void roff_free1(struct roff *);
static enum rofft roff_hash_find(const char *);
static int roffnode_push(struct roff *,
@@ -153,20 +152,11 @@ roff_free1(struct roff *r)
}
-static void
-roff_alloc1(struct roff *r)
-{
-
- /* Do nothing for now. */
-}
-
-
void
roff_reset(struct roff *r)
{
roff_free1(r);
- roff_alloc1(r);
}