[BACK]Return to man_html.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/man_html.c between version 1.40 and 1.41

version 1.40, 2011/07/08 17:47:54 version 1.41, 2011/09/18 10:25:28
Line 197 
Line 197 
 {  {
         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 225 
Line 224 
                 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.40  
changed lines
  Added in v.1.41