[BACK]Return to mdoc_html.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/mdoc_html.c between version 1.308 and 1.309

version 1.308, 2018/06/25 14:06:07 version 1.309, 2018/06/25 16:54:59
Line 719  mdoc_it_pre(MDOC_ARGS)
Line 719  mdoc_it_pre(MDOC_ARGS)
                         break;                          break;
                 case ROFFT_BODY:                  case ROFFT_BODY:
                         if (n->child == NULL) {                          if (n->child == NULL) {
                                 print_otag(h, TAG_DD, "ss?",                                  print_otag(h, TAG_DD, "s", "width", "auto");
                                     "width", "auto");  
                                 print_text(h, "\\ ");                                  print_text(h, "\\ ");
                         } else                          } else
                                 print_otag(h, TAG_DD, "");                                  print_otag(h, TAG_DD, "");
Line 1175  mdoc_fn_pre(MDOC_ARGS)
Line 1174  mdoc_fn_pre(MDOC_ARGS)
   
         for (n = n->child->next; n; n = n->next) {          for (n = n->child->next; n; n = n->next) {
                 if (NODE_SYNPRETTY & n->flags)                  if (NODE_SYNPRETTY & n->flags)
                         t = print_otag(h, TAG_VAR, "cTss?", "Fa",                          t = print_otag(h, TAG_VAR, "cTs", "Fa",
                             "white-space", "nowrap");                              "white-space", "nowrap");
                 else                  else
                         t = print_otag(h, TAG_VAR, "cT", "Fa");                          t = print_otag(h, TAG_VAR, "cT", "Fa");

Legend:
Removed from v.1.308  
changed lines
  Added in v.1.309

CVSweb