[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.66 and 1.68

version 1.66, 2010/05/17 23:57:06 version 1.68, 2010/05/29 18:47:54
Line 1080  mdoc_bl_pre(MDOC_ARGS)
Line 1080  mdoc_bl_pre(MDOC_ARGS)
                 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 1104  mdoc_bl_post(MDOC_ARGS)
Line 1104  mdoc_bl_post(MDOC_ARGS)
   
         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;
Line 2091  mdoc_li_pre(MDOC_ARGS)
Line 2091  mdoc_li_pre(MDOC_ARGS)
   
         PAIR_CLASS_INIT(&tag, "lit");          PAIR_CLASS_INIT(&tag, "lit");
         print_otag(h, TAG_SPAN, 1, &tag);          print_otag(h, TAG_SPAN, 1, &tag);
           if (NULL == n->child)
                   print_text(h, "");
         return(1);          return(1);
 }  }
   

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

CVSweb