summaryrefslogtreecommitdiffstatshomepage
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
commitde8a120741d506eaa296f9331b186d2971521eb8 (patch)
treed9b4893b9cee0126be5914b5d5f21b0a363af64c
parentabe164b5b7d160faacfd0c626e28750e2bf31eef (diff)
downloadmandoc-de8a120741d506eaa296f9331b186d2971521eb8.tar.gz
mandoc-de8a120741d506eaa296f9331b186d2971521eb8.tar.zst
mandoc-de8a120741d506eaa296f9331b186d2971521eb8.zip
Fixed `RI' (was reversed).
-rw-r--r--man_term.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/man_term.c b/man_term.c
index fd3f4264..cc823abe 100644
--- a/man_term.c
+++ b/man_term.c
@@ -1,4 +1,4 @@
-/* $Id: man_term.c,v 1.47 2009/10/30 18:53:08 kristaps Exp $ */
+/* $Id: man_term.c,v 1.48 2009/11/05 08:37:12 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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);