diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2015-02-05 01:46:56 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2015-02-05 01:46:56 +0000 |
commit | 902f6a979cb9238ddee3e60feebb858f2c773e7f (patch) | |
tree | 2bfaae099eaf4cc972ec0029c5ffbd9d4e62586f /mdoc_html.c | |
parent | 4514bbe8133f9b6a03f35d9c4321d64e48e6cf33 (diff) | |
download | mandoc-902f6a979cb9238ddee3e60feebb858f2c773e7f.tar.gz |
fix handling of empty .An macros
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index 82aa5d95..3d699e61 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1253,9 +1253,6 @@ mdoc_an_pre(MDOC_ARGS) return(0); } - if (n->child == NULL) - return(0); - if (h->flags & HTML_SPLIT) print_otag(h, TAG_BR, 0, NULL); |