summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-11-05 08:37:12 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-11-05 08:37:12 +0000
commit4a90853b5ab5416e40957e73a4adfd0d57c8259d (patch)
tree3fe36a941fb3872c527a3ad24d1b7ba49b3ffdef
parent0c78894c64ebea8f4ab0917e43506b712921a05d (diff)
downloadmandoc-4a90853b5ab5416e40957e73a4adfd0d57c8259d.tar.gz
Fixed `RI' (was reversed).
-rw-r--r--man_term.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/man_term.c b/man_term.c
index 910aa4a1..4d482b06 100644
--- a/man_term.c
+++ b/man_term.c
@@ -352,12 +352,12 @@ pre_RI(DECL_ARGS)
int i;
for (i = 0, nn = n->child; nn; nn = nn->next, i++) {
- if ( ! (i % 2))
+ if (i % 2)
p->under++;
if (i > 0)
p->flags |= TERMP_NOSPACE;
print_man_node(p, mt, nn, m);
- if ( ! (i % 2))
+ if (i % 2)
p->under--;
}
return(0);