[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.57 and 1.60

version 1.57, 2010/04/05 08:51:56 version 1.60, 2010/04/07 07:49:38
Line 666  mdoc_fl_pre(MDOC_ARGS)
Line 666  mdoc_fl_pre(MDOC_ARGS)
   
         print_text(h, "\\-");          print_text(h, "\\-");
   
         /* A blank `Fl' should incur a subsequent space. */  
   
         if (n->child)          if (n->child)
                 h->flags |= HTML_NOSPACE;                  h->flags |= HTML_NOSPACE;
           else if (n->next && n->next->line == n->line)
                   h->flags |= HTML_NOSPACE;
   
         return(1);          return(1);
 }  }
Line 1116  mdoc_bl_pre(MDOC_ARGS)
Line 1116  mdoc_bl_pre(MDOC_ARGS)
 {  {
         struct ord      *ord;          struct ord      *ord;
   
           if (MDOC_HEAD == n->type)
                   return(0);
         if (MDOC_BLOCK != n->type)          if (MDOC_BLOCK != n->type)
                 return(1);                  return(1);
         if (MDOC_Enum != a2list(n))          if (MDOC_Enum != a2list(n))
Line 1386  mdoc_bd_pre(MDOC_ARGS)
Line 1388  mdoc_bd_pre(MDOC_ARGS)
                 }                  }
   
         /* FIXME: -centered, etc. formatting. */          /* FIXME: -centered, etc. formatting. */
           /* FIXME: does not respect -offset ??? */
   
         if (MDOC_BLOCK == n->type) {          if (MDOC_BLOCK == n->type) {
                 bufcat_su(h, "margin-left", &su);                  bufcat_su(h, "margin-left", &su);

Legend:
Removed from v.1.57  
changed lines
  Added in v.1.60

CVSweb