[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.79 and 1.80

version 1.79, 2011/07/21 11:34:53 version 1.80, 2011/07/23 22:57:13
Line 201  print_man_node(MAN_ARGS)
Line 201  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 229  print_man_node(MAN_ARGS)
Line 228  print_man_node(MAN_ARGS)
                 print_text(h, n->string);                  print_text(h, n->string);
                 return;                  return;
         case (MAN_EQN):          case (MAN_EQN):
                 PAIR_CLASS_INIT(&tag, "eqn");                  print_eqn(h, n->eqn);
                 /*print_otag(h, TAG_SPAN, 1, &tag);  
                 print_text(h, n->eqn->data);*/  
                 break;                  break;
         case (MAN_TBL):          case (MAN_TBL):
                 /*                  /*

Legend:
Removed from v.1.79  
changed lines
  Added in v.1.80

CVSweb