[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.26 and 1.27

version 1.26, 2009/10/07 15:06:03 version 1.27, 2009/10/08 23:00:15
Line 49  static void    print_mdoc_nodelist(MDOC_ARGS);
Line 49  static void    print_mdoc_nodelist(MDOC_ARGS);
   
 static  void              a2width(const char *, struct roffsu *);  static  void              a2width(const char *, struct roffsu *);
 static  void              a2offs(const char *, struct roffsu *);  static  void              a2offs(const char *, struct roffsu *);
   
 static  int               a2list(const struct mdoc_node *);  static  int               a2list(const struct mdoc_node *);
   
 static  void              mdoc_root_post(MDOC_ARGS);  static  void              mdoc_root_post(MDOC_ARGS);
 static  int               mdoc_root_pre(MDOC_ARGS);  static  int               mdoc_root_pre(MDOC_ARGS);
 static  int               mdoc_it_block_pre(MDOC_ARGS, int,  
                                 struct roffsu *, int,  
                                 struct roffsu *);  
 static  int               mdoc_it_head_pre(MDOC_ARGS, int,  
                                 struct roffsu *);  
 static  int               mdoc_it_body_pre(MDOC_ARGS, int);  
   
 static  void              mdoc__x_post(MDOC_ARGS);  static  void              mdoc__x_post(MDOC_ARGS);
 static  int               mdoc__x_pre(MDOC_ARGS);  static  int               mdoc__x_pre(MDOC_ARGS);
Line 96  static void    mdoc_fo_post(MDOC_ARGS);
Line 91  static void    mdoc_fo_post(MDOC_ARGS);
 static  int               mdoc_fo_pre(MDOC_ARGS);  static  int               mdoc_fo_pre(MDOC_ARGS);
 static  int               mdoc_ic_pre(MDOC_ARGS);  static  int               mdoc_ic_pre(MDOC_ARGS);
 static  int               mdoc_in_pre(MDOC_ARGS);  static  int               mdoc_in_pre(MDOC_ARGS);
   static  int               mdoc_it_block_pre(MDOC_ARGS, int, int,
                                   struct roffsu *, struct roffsu *);
   static  int               mdoc_it_head_pre(MDOC_ARGS, int,
                                   struct roffsu *);
   static  int               mdoc_it_body_pre(MDOC_ARGS, int);
 static  int               mdoc_it_pre(MDOC_ARGS);  static  int               mdoc_it_pre(MDOC_ARGS);
 static  int               mdoc_lb_pre(MDOC_ARGS);  static  int               mdoc_lb_pre(MDOC_ARGS);
 static  int               mdoc_li_pre(MDOC_ARGS);  static  int               mdoc_li_pre(MDOC_ARGS);
Line 855  mdoc_bx_pre(MDOC_ARGS)
Line 855  mdoc_bx_pre(MDOC_ARGS)
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
 mdoc_it_block_pre(MDOC_ARGS, int type, struct roffsu *offs,  mdoc_it_block_pre(MDOC_ARGS, int type, int comp,
                 int comp, struct roffsu *width)                  struct roffsu *offs, struct roffsu *width)
 {  {
         struct htmlpair          tag;          struct htmlpair          tag;
         const struct mdoc_node  *nn;          const struct mdoc_node  *nn;
Line 1081  mdoc_it_pre(MDOC_ARGS)
Line 1081  mdoc_it_pre(MDOC_ARGS)
         if (MDOC_BODY == n->type)          if (MDOC_BODY == n->type)
                 return(mdoc_it_body_pre(m, n, h, type));                  return(mdoc_it_body_pre(m, n, h, type));
         if (MDOC_BLOCK == n->type)          if (MDOC_BLOCK == n->type)
                 return(mdoc_it_block_pre(m, n, h, type,                  return(mdoc_it_block_pre(m, n, h, type, comp,
                                         &offs, comp, &width));                                          &offs, &width));
   
         /* Override column widths. */          /* Override column widths. */
   

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27

CVSweb