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

Diff for /src/usr.bin/mandoc/mdoc_html.c between version 1.18 and 1.19

version 1.18, 2010/05/24 00:00:10 version 1.19, 2010/05/24 12:33:06
Line 1076 
Line 1076 
                 return(0);                  return(0);
         if (MDOC_BLOCK != n->type)          if (MDOC_BLOCK != n->type)
                 return(1);                  return(1);
         if (MDOC_Enum != n->data.list)          if (LIST_enum != n->data.list)
                 return(1);                  return(1);
   
         ord = malloc(sizeof(struct ord));          ord = malloc(sizeof(struct ord));
Line 1100 
Line 1100 
   
         if (MDOC_BLOCK != n->type)          if (MDOC_BLOCK != n->type)
                 return;                  return;
         if (MDOC_Enum != n->data.list)          if (LIST_enum != n->data.list)
                 return;                  return;
   
         ord = h->ords.head;          ord = h->ords.head;

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19