summaryrefslogtreecommitdiffstats
path: root/man_term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-06-11 13:18:42 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-06-11 13:18:42 +0000
commit1eb106f52759e9e3c305ea6bbc676af697e56821 (patch)
tree25223dca71d5d80fcfc0f133dd0e46ead5b7f30f /man_term.c
parentd9b167f66ed8cf7a54f973b40d90dfa164aaa204 (diff)
downloadmandoc-1eb106f52759e9e3c305ea6bbc676af697e56821.tar.gz
Backed-out .IP changes for libman (needs work).
Diffstat (limited to 'man_term.c')
-rw-r--r--man_term.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/man_term.c b/man_term.c
index 32882700..976139a2 100644
--- a/man_term.c
+++ b/man_term.c
@@ -273,12 +273,15 @@ pre_PP(DECL_ARGS)
static int
pre_IP(DECL_ARGS)
{
+#if 0
const struct man_node *nn;
size_t offs;
+#endif
term_vspace(p);
p->offset = INDENT;
+#if 0
if (NULL == (nn = n->child))
return(1);
if (MAN_TEXT != nn->type)
@@ -295,6 +298,8 @@ pre_IP(DECL_ARGS)
/* FIXME */
if ((p->offset += offs) > p->rmargin)
errx(1, "line too long");
+#endif
+
return(0);
}