[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.152 and 1.153

version 1.152, 2011/02/06 23:02:31 version 1.153, 2011/02/09 09:52:47
Line 410  print_mdoc_node(MDOC_ARGS)
Line 410  print_mdoc_node(MDOC_ARGS)
 {  {
         int              child;          int              child;
         struct tag      *t;          struct tag      *t;
           struct htmlpair  tag;
   
         child = 1;          child = 1;
         t = h->tags.head;          t = h->tags.head;
Line 433  print_mdoc_node(MDOC_ARGS)
Line 434  print_mdoc_node(MDOC_ARGS)
                 print_text(h, n->string);                  print_text(h, n->string);
                 return;                  return;
         case (MDOC_EQN):          case (MDOC_EQN):
                 return;                  PAIR_CLASS_INIT(&tag, "eqn");
                   print_otag(h, TAG_SPAN, 1, &tag);
                   print_text(h, n->eqn->data);
                   break;
         case (MDOC_TBL):          case (MDOC_TBL):
                 /*                  /*
                  * This will take care of initialising all of the table                   * This will take care of initialising all of the table
Line 480  print_mdoc_node(MDOC_ARGS)
Line 484  print_mdoc_node(MDOC_ARGS)
         switch (n->type) {          switch (n->type) {
         case (MDOC_ROOT):          case (MDOC_ROOT):
                 mdoc_root_post(m, n, h);                  mdoc_root_post(m, n, h);
                   break;
           case (MDOC_EQN):
                 break;                  break;
         default:          default:
                 if (mdocs[n->tok].post && ENDBODY_NOT == n->end)                  if (mdocs[n->tok].post && ENDBODY_NOT == n->end)

Legend:
Removed from v.1.152  
changed lines
  Added in v.1.153

CVSweb