[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.293 and 1.294

version 1.293, 2017/07/15 17:29:31 version 1.294, 2017/07/15 17:57:51
Line 732  mdoc_it_pre(MDOC_ARGS)
Line 732  mdoc_it_pre(MDOC_ARGS)
                                 print_otag(h, TAG_B, "c", cattr);                                  print_otag(h, TAG_B, "c", cattr);
                         break;                          break;
                 case ROFFT_BODY:                  case ROFFT_BODY:
                         print_otag(h, TAG_DD, "csw+l", cattr,                          print_otag(h, TAG_DD, "csw*+l", cattr,
                             bl->norm->Bl.width);                              bl->norm->Bl.width);
                         break;                          break;
                 default:                  default:
Line 746  mdoc_it_pre(MDOC_ARGS)
Line 746  mdoc_it_pre(MDOC_ARGS)
                             (n->parent->prev == NULL ||                              (n->parent->prev == NULL ||
                              n->parent->prev->body == NULL ||                               n->parent->prev->body == NULL ||
                              n->parent->prev->body->child != NULL)) {                               n->parent->prev->body->child != NULL)) {
                                 t = print_otag(h, TAG_DT, "csw+-l",                                  t = print_otag(h, TAG_DT, "csw*+-l",
                                     cattr, bl->norm->Bl.width);                                      cattr, bl->norm->Bl.width);
                                 print_text(h, "\\ ");                                  print_text(h, "\\ ");
                                 print_tagq(h, t);                                  print_tagq(h, t);
Line 754  mdoc_it_pre(MDOC_ARGS)
Line 754  mdoc_it_pre(MDOC_ARGS)
                                 print_text(h, "\\ ");                                  print_text(h, "\\ ");
                                 print_tagq(h, t);                                  print_tagq(h, t);
                         }                          }
                         print_otag(h, TAG_DT, "csw+-l", cattr,                          print_otag(h, TAG_DT, "csw*+-l", cattr,
                             bl->norm->Bl.width);                              bl->norm->Bl.width);
                         break;                          break;
                 case ROFFT_BODY:                  case ROFFT_BODY:
Line 860  mdoc_bl_pre(MDOC_ARGS)
Line 860  mdoc_bl_pre(MDOC_ARGS)
         case LIST_tag:          case LIST_tag:
                 if (bl->offs)                  if (bl->offs)
                         print_otag(h, TAG_DIV, "cswl", "Bl-tag", bl->offs);                          print_otag(h, TAG_DIV, "cswl", "Bl-tag", bl->offs);
                 print_otag(h, TAG_DL, "csw+l", bl->comp ?                  print_otag(h, TAG_DL, "csw*+l", bl->comp ?
                     "Bl-tag Bl-compact" : "Bl-tag", bl->width);                      "Bl-tag Bl-compact" : "Bl-tag", bl->width);
                 return 1;                  return 1;
         case LIST_column:          case LIST_column:

Legend:
Removed from v.1.293  
changed lines
  Added in v.1.294

CVSweb