[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.45 and 1.46

version 1.45, 2009/10/31 06:50:25 version 1.46, 2009/10/31 08:34:12
Line 951  mdoc_it_head_pre(MDOC_ARGS, int type, struct roffsu *w
Line 951  mdoc_it_head_pre(MDOC_ARGS, int type, struct roffsu *w
   
         switch (type) {          switch (type) {
         case (MDOC_Item):          case (MDOC_Item):
                 /* FALLTHROUGH */  
         case (MDOC_Ohang):  
                 return(0);                  return(0);
           case (MDOC_Ohang):
                   print_otag(h, TAG_DIV, 0, &tag);
                   return(1);
         case (MDOC_Column):          case (MDOC_Column):
                 bufcat_su(h, "min-width", width);                  bufcat_su(h, "min-width", width);
                 bufcat_style(h, "clear", "none");                  bufcat_style(h, "clear", "none");
Line 1067  mdoc_it_pre(MDOC_ARGS)
Line 1068  mdoc_it_pre(MDOC_ARGS)
         /* Override width in some cases. */          /* Override width in some cases. */
   
         switch (type) {          switch (type) {
           case (MDOC_Ohang):
                   /* FALLTHROUGH */
         case (MDOC_Item):          case (MDOC_Item):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Inset):          case (MDOC_Inset):

Legend:
Removed from v.1.45  
changed lines
  Added in v.1.46

CVSweb