[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.80 and 1.81

version 1.80, 2010/06/12 11:21:44 version 1.81, 2010/06/12 11:58:22
Line 1035  mdoc_it_pre(MDOC_ARGS)
Line 1035  mdoc_it_pre(MDOC_ARGS)
         if (MDOC_BLOCK != n->type)          if (MDOC_BLOCK != n->type)
                 bl = bl->parent;                  bl = bl->parent;
   
         type = bl->data.list;          type = bl->data.Bl.type;
   
         /* Set default width and offset. */          /* Set default width and offset. */
   
Line 1123  mdoc_bl_pre(MDOC_ARGS)
Line 1123  mdoc_bl_pre(MDOC_ARGS)
                 return(0);                  return(0);
         if (MDOC_BLOCK != n->type)          if (MDOC_BLOCK != n->type)
                 return(1);                  return(1);
         if (LIST_enum != n->data.list)          if (LIST_enum != n->data.Bl.type)
                 return(1);                  return(1);
   
         ord = malloc(sizeof(struct ord));          ord = malloc(sizeof(struct ord));
Line 1147  mdoc_bl_post(MDOC_ARGS)
Line 1147  mdoc_bl_post(MDOC_ARGS)
   
         if (MDOC_BLOCK != n->type)          if (MDOC_BLOCK != n->type)
                 return;                  return;
         if (LIST_enum != n->data.list)          if (LIST_enum != n->data.Bl.type)
                 return;                  return;
   
         ord = h->ords.head;          ord = h->ords.head;

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

CVSweb