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

Diff for /mandoc/man_html.c between version 1.68 and 1.69

version 1.68, 2011/02/06 21:44:36 version 1.69, 2011/02/09 09:52:47
Line 180  print_man_node(MAN_ARGS)
Line 180  print_man_node(MAN_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 216  print_man_node(MAN_ARGS)
Line 217  print_man_node(MAN_ARGS)
                         print_otag(h, TAG_BR, 0, NULL);                          print_otag(h, TAG_BR, 0, NULL);
                 return;                  return;
         case (MAN_EQN):          case (MAN_EQN):
                 return;                  PAIR_CLASS_INIT(&tag, "eqn");
                   print_otag(h, TAG_SPAN, 1, &tag);
                   print_text(h, n->eqn->data);
                   break;
         case (MAN_TBL):          case (MAN_TBL):
                 /*                  /*
                  * This will take care of initialising all of the table                   * This will take care of initialising all of the table
Line 260  print_man_node(MAN_ARGS)
Line 264  print_man_node(MAN_ARGS)
         switch (n->type) {          switch (n->type) {
         case (MAN_ROOT):          case (MAN_ROOT):
                 man_root_post(m, n, mh, h);                  man_root_post(m, n, mh, h);
                   break;
           case (MAN_EQN):
                 break;                  break;
         default:          default:
                 if (mans[n->tok].post)                  if (mans[n->tok].post)

Legend:
Removed from v.1.68  
changed lines
  Added in v.1.69

CVSweb