[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.171 and 1.173

version 1.171, 2011/06/29 15:38:09 version 1.173, 2011/07/21 11:34:53
Line 435  print_mdoc_node(MDOC_ARGS)
Line 435  print_mdoc_node(MDOC_ARGS)
                 return;                  return;
         case (MDOC_EQN):          case (MDOC_EQN):
                 PAIR_CLASS_INIT(&tag, "eqn");                  PAIR_CLASS_INIT(&tag, "eqn");
                 print_otag(h, TAG_SPAN, 1, &tag);                  /*print_otag(h, TAG_SPAN, 1, &tag);
                 print_text(h, n->eqn->data);                  print_text(h, n->eqn->data);*/
                 break;                  break;
         case (MDOC_TBL):          case (MDOC_TBL):
                 /*                  /*
Line 610  mdoc_sh_pre(MDOC_ARGS)
Line 610  mdoc_sh_pre(MDOC_ARGS)
                 return(1);                  return(1);
   
         bufinit(h);          bufinit(h);
           bufcat(h, "x");
         for (n = n->child; n; n = n->next) {          for (n = n->child; n; n = n->next) {
                 bufcat_id(h, n->string);                  bufcat_id(h, n->string);
                 if (n->next)                  if (n->next)
Line 636  mdoc_ss_pre(MDOC_ARGS)
Line 637  mdoc_ss_pre(MDOC_ARGS)
                 return(1);                  return(1);
   
         bufinit(h);          bufinit(h);
           bufcat(h, "x");
         for (n = n->child; n; n = n->next) {          for (n = n->child; n; n = n->next) {
                 bufcat_id(h, n->string);                  bufcat_id(h, n->string);
                 if (n->next)                  if (n->next)

Legend:
Removed from v.1.171  
changed lines
  Added in v.1.173

CVSweb