From 2a677979d5b94a58bb3b5bac12084fa09a6cfcdd Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Wed, 12 Jan 2011 15:31:17 +0000 Subject: Make sure that -Thtml doesn't break within literal lines. This is the same logic as the -Tascii case. Also remove the TODO. --- TODO | 6 +----- man_html.c | 20 ++++++-------------- 2 files changed, 7 insertions(+), 19 deletions(-) diff --git a/TODO b/TODO index 8ae44be5..19a98cbb 100644 --- a/TODO +++ b/TODO @@ -1,6 +1,6 @@ ************************************************************************ * Official mandoc TODO. -* $Id: TODO,v 1.75 2011/01/10 03:43:47 schwarze Exp $ +* $Id: TODO,v 1.76 2011/01/12 15:31:17 kristaps Exp $ ************************************************************************ ************************************************************************ @@ -17,10 +17,6 @@ * formatter bugs ************************************************************************ -- in literal mode, the man(7) -Tascii formatter - breaks the line between macro arguments, - e.g. ".B #include " in gettext(3) - ************************************************************************ * missing features ************************************************************************ diff --git a/man_html.c b/man_html.c index 9e666c77..de8cf2ed 100644 --- a/man_html.c +++ b/man_html.c @@ -1,4 +1,4 @@ -/* $Id: man_html.c,v 1.63 2011/01/12 10:43:22 kristaps Exp $ */ +/* $Id: man_html.c,v 1.64 2011/01/12 15:31:17 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * @@ -186,12 +186,6 @@ print_man_node(MAN_ARGS) bufinit(h); - /* - * FIXME: embedded elements within next-line scopes (e.g., `br' - * within an empty `B') will cause formatting to be forgotten - * due to scope closing out. - */ - switch (n->type) { case (MAN_ROOT): child = man_root_pre(m, n, mh, h); @@ -200,19 +194,19 @@ print_man_node(MAN_ARGS) if ('\0' == *n->string) { print_otag(h, TAG_P, 0, NULL); return; - } - - if (' ' == *n->string && MAN_LINE & n->flags) + } else if (' ' == *n->string && MAN_LINE & n->flags) print_otag(h, TAG_BR, 0, NULL); print_text(h, n->string); - if (MANH_LITERAL & mh->fl) + if (MANH_LITERAL & mh->fl && + (NULL == n->next || + n->next->line > n->line)) print_otag(h, TAG_BR, 0, NULL); return; case (MAN_TBL): print_tbl(h, n->span); - break; + return; default: /* * Close out scope of font prior to opening a macro @@ -240,8 +234,6 @@ print_man_node(MAN_ARGS) case (MAN_ROOT): man_root_post(m, n, mh, h); break; - case (MAN_TBL): - break; default: if (mans[n->tok].post) (*mans[n->tok].post)(m, n, mh, h); -- cgit v1.2.3