summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);