summaryrefslogtreecommitdiffstats
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-02-05 00:14:13 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-02-05 00:14:13 +0000
commit4514bbe8133f9b6a03f35d9c4321d64e48e6cf33 (patch)
tree0e6b28410e8f7299f337233500090d8976d57375 /mdoc_html.c
parent9428c0388cfeb9544f5ffec7200f5fbee7da4727 (diff)
downloadmandoc-4514bbe8133f9b6a03f35d9c4321d64e48e6cf33.tar.gz
Simplify by deleting the "lastline" member of struct mdoc_node.
Minus one struct member, minus 17 lines of code, no functional change.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 8a52855e..82aa5d95 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -436,12 +436,9 @@ print_mdoc_node(MDOC_ARGS)
break;
}
- if (HTML_KEEP & h->flags) {
- if (n->prev ? (n->prev->lastline != n->line) :
- (n->parent && n->parent->line != n->line)) {
- h->flags &= ~HTML_KEEP;
- h->flags |= HTML_PREKEEP;
- }
+ if (h->flags & HTML_KEEP && n->flags & MDOC_LINE) {
+ h->flags &= ~HTML_KEEP;
+ h->flags |= HTML_PREKEEP;
}
if (child && n->child)